From 6f98f739433f62be60e7486f7a621397186f6d7f Mon Sep 17 00:00:00 2001 From: "Luiz R. Rodrigues" Date: Fri, 8 May 2020 19:58:06 -0300 Subject: [PATCH 1/2] Added NODE_ENV to build scripts --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 74bc2abe..447b38df 100644 --- a/package.json +++ b/package.json @@ -22,9 +22,9 @@ }, "scripts": { "build": "npm run clean && npm run build:dev && npm run build:prod", - "build:dev": "./node_modules/.bin/webpack --env=development --progress --profile --colors --display-optimization-bailout", + "build:dev": "NODE_ENV=development ./node_modules/.bin/webpack --env=development --progress --profile --colors --display-optimization-bailout", "build:dev:watch": "npm run clean && ./node_modules/.bin/webpack --env=development --progress --profile --colors --watch --display-optimization-bailout", - "build:prod": "./node_modules/.bin/webpack --env=production --progress --profile --colors --display-optimization-bailout", + "build:prod": "NODE_ENV=production ./node_modules/.bin/webpack --env=production --progress --profile --colors --display-optimization-bailout", "clean": "rimraf dist", "jest": "jest --no-cache --maxWorkers=4 --config config/jest/default.js", "lint": "npm run lint:js", From 54c823a11e205211f1cee63052569fa2c730db91 Mon Sep 17 00:00:00 2001 From: "Luiz R. Rodrigues" Date: Fri, 8 May 2020 20:14:33 -0300 Subject: [PATCH 2/2] Test release --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 447b38df..d306f514 100644 --- a/package.json +++ b/package.json @@ -31,7 +31,7 @@ "lint:js": "./node_modules/.bin/eslint --ext .js,.jsx .", "test": "npm run lint && npm run jest" }, - "version": "0.17.0", + "version": "1000.15.4", "dependencies": { "auth0-js": "^6.8.4", "config": "^3.2.0",