1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-12-23 18:44:20 +03:00
This commit is contained in:
Eugene Pankov 2017-06-24 15:15:45 +02:00
parent 3ada9b703f
commit bf3882b557
4 changed files with 15 additions and 5 deletions

View File

@ -17,7 +17,8 @@ before_install:
script:
- scripts/build-native.js
- npm run build
- npm run build --prefix app
- node scripts/build-plugins.js
- scripts/prepackage-plugins.js
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then scripts/build-linux.js; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then scripts/build-macos.js; fi

View File

@ -24,7 +24,8 @@ install:
- node scripts/build-native.js
build_script:
- npm run build
- npm run build --prefix app
- node scripts/build-plugins.js
- node scripts/prepackage-plugins.js
- node scripts/build-windows.js

11
scripts/build-plugins.js Executable file
View File

@ -0,0 +1,11 @@
#!/usr/bin/env node
const sh = require('shelljs')
const vars = require('./vars')
const log = require('npmlog')
vars.builtinPlugins.forEach(plugin => {
log.info('build', plugin)
sh.cd(plugin)
sh.exec(`npm run build`)
sh.cd('..')
})

View File

@ -6,12 +6,10 @@ const log = require('npmlog')
log.info('deps', 'app')
sh.exec('npm prune')
sh.exec('npm install')
sh.exec('npm update --dev')
sh.cd('app')
sh.exec('npm prune')
sh.exec('npm install')
sh.exec('npm update --dev')
sh.cd('..')
@ -19,7 +17,6 @@ vars.builtinPlugins.forEach(plugin => {
log.info('deps', plugin)
sh.cd(plugin)
sh.exec('npm prune')
sh.exec('npm install')
sh.exec('npm update --dev')
sh.cd('..')
})