Skip to content

Commit

Permalink
feat(@angular-devkit/build-webpack): add a "build" builder
Browse files Browse the repository at this point in the history
Having webpack everywhere is redundant. I would like to deprecate the
"webpack" and "webpack-dev-server" in favor of simply "build" and
"dev-server".
  • Loading branch information
hansl authored and mgechev committed Feb 27, 2019
1 parent 862571c commit 79c546b
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions packages/angular_devkit/build_webpack/builders.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
{
"$schema": "../architect/src/builders-schema.json",
"builders": {
"build": {
"implementation": "./src/webpack/index2",
"class": "./src/webpack",
"schema": "./src/webpack/schema.json",
"description": "Build a webpack app."
},
"webpack": {
"implementation": "./src/webpack/index2",
"class": "./src/webpack",
Expand Down

0 comments on commit 79c546b

Please sign in to comment.