Add missing package dependencies for atom-typescript package

This commit is contained in:
Glavin Wiechert 2015-06-06 16:56:01 -03:00
parent 4a1184eba5
commit 945732057d
3 changed files with 5 additions and 3 deletions

View File

@ -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

View File

@ -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

View File

@ -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