From: Daniel Ruf Date: Sun, 1 Apr 2018 23:54:49 +0000 (+0200) Subject: fix: force color mode for gulp and husky scripts X-Git-Tag: v6.6.0~3^2~253^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F11111%2Fhead;p=thirdparty%2Ffoundation%2Ffoundation-sites.git fix: force color mode for gulp and husky scripts --- diff --git a/package.json b/package.json index 0f164d5dd..8b67267bb 100644 --- a/package.json +++ b/package.json @@ -14,17 +14,17 @@ "test": "npm run test:sass && npm run test:javascript:units", "test:ci": "npm run test:sass && npm run test:javascript:ci", "test:sass": "mocha test/sass/test_sass.js --colors", - "test:javascript:transpile": "gulp sass:foundation && gulp test:transpile-js", + "test:javascript:transpile": "gulp sass:foundation --color && gulp test:transpile-js --color", "test:javascript:units": "npm run test:javascript:transpile && mocha-headless-chrome -a ignore-resource-errors -f test/javascript/index.html", "test:javascript:browserstack": "npm run test:javascript:transpile && browserstack-runner", "test:javascript:ci": "npm run test:javascript:transpile && mocha-headless-chrome -a ignore-resource-errors -f test/javascript/index.html && browserstack-runner", - "test:visual": "gulp test", - "deploy": "gulp deploy", - "deploy:prep": "gulp deploy:prep", - "deploy:docs": "gulp deploy:docs", - "deploy:beta": "gulp deploy:beta", - "precommit": "node ./script/husky-precommit.js", - "prepush": "node ./script/husky-prepush.js" + "test:visual": "gulp test --color", + "deploy": "gulp deploy --color", + "deploy:prep": "gulp deploy:prep --color", + "deploy:docs": "gulp deploy:docs --color", + "deploy:beta": "gulp deploy:beta --color", + "precommit": "node ./script/husky-precommit.js --color", + "prepush": "node ./script/husky-prepush.js --color" }, "dependencies": { "jquery": ">=3.0.0",