Skip to content

Commit 8d38cb6

Browse files
committed
build(project): Fix deprecation for production
1 parent 6f6c422 commit 8d38cb6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
"ng": "ng",
66
"start": "ng serve",
77
"build": "ng build",
8-
"build-prod": "ng build --prod",
8+
"build-prod": "ng build --configuration production",
99
"test": "ng test",
1010
"lint:lib": "ng lint angular-editor",
1111
"e2e": "ng e2e",
1212
"build-watch:lib": "ng build angular-editor --watch",
1313
"test:lib": "ng test angular-editor",
1414
"build:lib": "ng build angular-editor",
15-
"build-prod:lib": "ng build angular-editor --prod",
15+
"build-prod:lib": "ng build angular-editor --configuration production",
1616
"publish:lib": "npm run copy:readme && npm run copy:changelog && npm run copy:license && npm publish ./dist/angular-editor --tag next",
1717
"copy:readme": "cpx README.md dist/angular-editor",
1818
"copy:changelog": "cpx CHANGELOG.md dist/angular-editor",

0 commit comments

Comments
 (0)