-
-
Save jchapuis/6d96734a6625ab982c5a40451627c28f to your computer and use it in GitHub Desktop.
Webpack integration via tasks.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "0.1.0", | |
"command": "${workspaceRoot}/node_modules/.bin/webpack", | |
"isShellCommand": true, | |
"args": [ | |
"--display-modules", | |
"--progress" | |
], | |
"echoCommand": true, | |
"tasks": [ | |
{ | |
"args": [ | |
"-d" | |
], | |
"suppressTaskName": true, | |
"taskName": "webpack dev", | |
"isBuildCommand": true | |
}, | |
{ | |
"args": [ | |
"-p" | |
], | |
"suppressTaskName": true, | |
"taskName": "webpack dist", | |
"isBuildCommand": false | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment