Last active
May 19, 2017 07:56
-
-
Save scottaddie/ec61dcedb47ff9113bf3 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