1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-16 04:45:20 +03:00

Fixed yarn install for production dependencies, fixed instructions for development.

This commit is contained in:
Michael Keller 2019-05-03 14:13:29 +12:00 committed by mikeller
parent de14aa50de
commit a66cf83ce4
2 changed files with 13 additions and 6 deletions

View file

@ -228,7 +228,11 @@ function dist_src() {
.pipe(gulp.src('changelog.html', { passthrougth: true }))
.pipe(gulp.dest(DIST_DIR))
.pipe(install({
yarn: '--production --ignore-scripts'
commands: {
'package.json': 'yarn'
},
production: true,
ignoreScripts: true
}));
};