Skip to content

Commit ff1742a

Browse files
committed
Merge pull request #2 from stevelacy/master
add JavaScript syntax highlighting
2 parents 4665c81 + daa8dc5 commit ff1742a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Webpack Shell Plugin
22

3-
This plugin allows you to run any shell commands before or after webpack builds. This will work for both webpack and webpack-dev-server.
3+
This plugin allows you to run any shell commands before or after webpack builds. This will work for both webpack and webpack-dev-server.
44

55
This goes great if you want to run any reporting tools or tests like selenium, protractor, phantom, ect.
66

@@ -14,7 +14,7 @@ Just install the plugin
1414

1515
Insert into your webpack.config.js:
1616

17-
````
17+
```js
1818
const WebpackShellPlugin = require('webpack-shell-plugin');
1919

2020
var plugins = [];
@@ -43,7 +43,7 @@ var config = {
4343

4444
module.exports = config;
4545

46-
````
46+
```
4747
Once the build finishes, a child process is spawned firing both a python and node script.
4848

4949
Enjoy

0 commit comments

Comments
 (0)