diff --git a/package.json b/package.json index 8419f0c7..24da0a80 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,7 @@ "flow": "flow", "flow-typed": "rimraf flow-typed/npm && flow-typed install --overwrite || true", "lint": "cross-env NODE_ENV=development eslint --cache --format=node_modules/eslint-formatter-pretty .", - "lint-ci": "npm run lint && npm run flow", + "lint-ci": "npm run lint && npm run lint-styles && npm run flow", "lint-fix": "npm run lint -- --fix", "lint-styles": "stylelint app/*.scss app/components/*.scss --syntax scss", "lint-styles-fix": "stylelint --fix app/*.scss app/components/*.scss --syntax scss", @@ -27,7 +27,7 @@ "start-renderer-dev": "cross-env NODE_ENV=development node --trace-warnings -r babel-register ./node_modules/webpack-dev-server/bin/webpack-dev-server --config webpack.config.renderer.dev.js", "test": "cross-env NODE_ENV=test BABEL_DISABLE_CACHE=1 node --trace-warnings ./test/runTests.js", "test-ci": "npm run package && npm run test && npm run test-e2e", - "test-all": "npm run lint && npm run flow && npm run build && npm run test && npm run test-e2e", + "test-all": "npm run lint && npm run lint-styles && npm run flow && npm run build && npm run test && npm run test-e2e", "test-e2e": "cross-env NODE_ENV=test BABEL_DISABLE_CACHE=1 node --trace-warnings ./test/runTests.js e2e", "test-watch": "npm test -- --watch", "install-grpc": "cd app && npm run install-grpc"