This repository was archived by the owner on Aug 8, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 128
Usage with Visual Studio
sokra edited this page Oct 15, 2014
·
6 revisions
Usage with Visual Studio
It is a simple task to integrate Visual Studio with webpack, all you need to do is use the external tool feature.
- Open the External Tools dialog box and click Add.
- Title: field use webpack
- Command: path to webpack
webpack.cmd
- Assuming webpack was installed globally with npm.C:\Users\{{username}}\AppData\Roaming\npm\webpack.cmd
- Arguments:
-w
- Check
Use Output window
- On the menu bar, right click and select
Customize...
. - Click on the
Commands
tab and click onToolBar
radio button to select the newly created external tool. - Select Standard and click on
Add Command ...
button. - On the left lit item, select
Tools
and than select theExternal Command X
item where X is the index of your tool that appears in theTools
menu (starting index => 1). In my exampleExternal Command 6
. - Click
Ok
and thenClose
.
webpack 👍