Add missing package dependencies for atom-typescript package
This commit is contained in:
parent
4a1184eba5
commit
945732057d
|
@ -19,7 +19,7 @@ notifications:
|
||||||
script: sh build-package.sh
|
script: sh build-package.sh
|
||||||
|
|
||||||
env:
|
env:
|
||||||
- APM_TEST_PACKAGES="atom-typescript language-marko language-tss language-html-swig"
|
- APM_TEST_PACKAGES="linter atom-typescript language-marko language-tss language-html-swig"
|
||||||
|
|
||||||
cache:
|
cache:
|
||||||
- pip
|
- pip
|
||||||
|
|
|
@ -103,6 +103,6 @@ install:
|
||||||
build_script:
|
build_script:
|
||||||
- cd %APPVEYOR_BUILD_FOLDER%
|
- cd %APPVEYOR_BUILD_FOLDER%
|
||||||
# Install languages to Atom
|
# Install languages to Atom
|
||||||
- apm install atom-typescript language-marko language-tss language-html-swig
|
- apm install linter atom-typescript language-marko language-tss language-html-swig
|
||||||
# Run tests on package
|
# Run tests on package
|
||||||
- apm test --one --path %LOCALAPPDATA%/atom/bin/atom.cmd
|
- apm test --one --path %LOCALAPPDATA%/atom/bin/atom.cmd
|
||||||
|
|
|
@ -25,12 +25,14 @@ describe "BeautifyLanguages", ->
|
||||||
]
|
]
|
||||||
# All Atom packages that Atom Beautify is dependent on
|
# All Atom packages that Atom Beautify is dependent on
|
||||||
dependentPackages = [
|
dependentPackages = [
|
||||||
|
'autocomplete-plus'
|
||||||
|
'linter'
|
||||||
'atom-typescript'
|
'atom-typescript'
|
||||||
]
|
]
|
||||||
# Add language packages to dependentPackages
|
# Add language packages to dependentPackages
|
||||||
for lang in allLanguages
|
for lang in allLanguages
|
||||||
do (lang) ->
|
do (lang) ->
|
||||||
dependentPackages.push("language-#{lang}")
|
dependentPackages.push("language-#{lang}")
|
||||||
|
|
||||||
beforeEach ->
|
beforeEach ->
|
||||||
# Install all of the languages
|
# Install all of the languages
|
||||||
|
|
Loading…
Reference in New Issue