1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-23 16:25:22 +03:00

Moved from 'npm' to 'yarn'.

Changed travis config.

Simplified package.json.

Try with a newer npm, who knows, it's for Mac.
This commit is contained in:
Michael Keller 2019-04-30 16:15:53 +12:00 committed by mikeller
parent 55b11e90b4
commit 4c1fdf7925
6 changed files with 5090 additions and 7093 deletions

View file

@ -228,7 +228,7 @@ function dist_src() {
.pipe(gulp.src('changelog.html', { passthrougth: true }))
.pipe(gulp.dest(DIST_DIR))
.pipe(install({
npm: '--production --ignore-scripts'
yarn: '--production --ignore-scripts'
}));
};
@ -588,7 +588,8 @@ function release_rpm(arch, done) {
tempDir: path.join(RELEASE_DIR,'tmp-rpm-build-' + arch),
keepTemp: false,
verbose: false,
rpmDest: RELEASE_DIR
rpmDest: RELEASE_DIR,
execOpts: { maxBuffer: 1024 * 1024 * 16 },
};
buildRpm(options, function(err, rpm) {