Fix frontend tests and scripts
... | ... | @@ -78,13 +78,13 @@ |
"webpack-postcss-tools": "^1.1.1" | ||
}, | ||
"scripts": { | ||
"lint": "./node_modules/eslint/bin/eslint.js --ignore-pattern 'resources/frontend_client/app/dist/**/*' resources/frontend_client/app", | ||
"test": "./node_modules/karma/bin/karma start resources/frontend_client/test/karma.conf.js --single-run --reporters nyan", | ||
"test-watch": "./node_modules/karma/bin/karma start resources/frontend_client/test/karma.conf.js --auto-watch --reporters nyan", | ||
"test-e2e": "./node_modules/protractor/bin/webdriver-manager update && ./node_modules/protractor/bin/protractor resources/frontend_client/test/protractor-conf.js", | ||
"lint": "./node_modules/eslint/bin/eslint.js frontend/app", | ||
"test": "./node_modules/karma/bin/karma start frontend/test/karma.conf.js --single-run --reporters nyan", | ||
"test-watch": "./node_modules/karma/bin/karma start frontend/test/karma.conf.js --auto-watch --reporters nyan", | ||
"test-e2e": "./node_modules/protractor/bin/webdriver-manager update && ./node_modules/protractor/bin/protractor frontend/test/protractor-conf.js", | ||
"build": "./node_modules/webpack/bin/webpack.js", | ||
"build-watch": "./node_modules/webpack/bin/webpack.js --watch", | ||
"build-hot": "NODE_ENV=hot ./node_modules/webpack/bin/webpack.js && NODE_ENV=hot node_modules/webpack-dev-server/bin/webpack-dev-server.js --hot --inline --content-base resources/frontend_client", | ||
"start": "lein ring server" | ||
"build-hot": "NODE_ENV=hot ./node_modules/webpack/bin/webpack.js && NODE_ENV=hot node_modules/webpack-dev-server/bin/webpack-dev-server.js --hot --inline --content-base frontend", | ||
"start": "npm run build && lein ring server" | ||
} | ||
} |
Please register or sign in to comment