remove firefox restarting since it starts up inconsistantly (see https://github.com/mozilla/web-ext/issues/1092)

This commit is contained in:
Peter Snyder 2017-11-11 14:47:22 -05:00
parent 99c613f089
commit f4c9517c3a
No known key found for this signature in database
GPG key ID: 9690F0C12F24762F

View file

@ -23,7 +23,7 @@
"scripts": {
"clean": "rm -Rf dist/",
"bundle": "node_modules/gulp/bin/gulp.js clean && node_modules/gulp/bin/gulp.js && node_modules/web-ext/bin/web-ext -s add-on -a dist build --overwrite-dest",
"firefox": "node_modules/cross-env/dist/bin/cross-env.js npm run bundle && node_modules/web-ext/bin/web-ext -s add-on run",
"firefox": "node_modules/cross-env/dist/bin/cross-env.js npm run bundle && node_modules/web-ext/bin/web-ext -s add-on run --ignore-files '**/*.js'",
"lint": "node_modules/eslint/bin/eslint.js .",
"lint:fix": "node_modules/eslint/bin/eslint.js --fix .",
"test": "npm run clean; npm run bundle && ln -s `ls dist/` dist/webapi_manager.zip && node_modules/cross-env/dist/bin/cross-env.js node_modules/mocha/bin/mocha test/unit/*.js test/functional/*.js --only-local-tests",