From 6b6e898882bc85379cff52a04f68f9c8aaaccb0c Mon Sep 17 00:00:00 2001 From: Jake McDermott Date: Wed, 13 Dec 2017 12:45:26 -0500 Subject: [PATCH] fix missing comma in package.json --- awx/ui/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/ui/package.json b/awx/ui/package.json index f28dac7022..09ffb3f203 100644 --- a/awx/ui/package.json +++ b/awx/ui/package.json @@ -29,7 +29,7 @@ "lint": "eslint .", "dev": "webpack --config build/webpack.development.js --progress", "watch": "webpack-dev-server --config build/webpack.watch.js --progress", - "production": "webpack --config build/webpack.production.js" + "production": "webpack --config build/webpack.production.js", "component-test": "./node_modules/.bin/karma start client/test/karma.conf.js", "lint-dev": "./node_modules/.bin/nodemon --exec \"./node_modules/.bin/eslint -c .eslintrc.js .\" --watch \"client/components/**/*.js\"", "component-dev": "./node_modules/.bin/karma start client/test/karma.conf.js --auto-watch --no-single-run"