Created
January 19, 2017 20:41
-
-
Save johnhamm/d8256fc9ce1561b62af35b90341fb44e to your computer and use it in GitHub Desktop.
webpack webpack-dev-server problem matcher for vscode
This file contains hidden or 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": "npm", | |
"isShellCommand": true, | |
"showOutput": "silent", | |
"args": ["run"], | |
"tasks": [{ | |
"taskName": "dev", | |
"isWatching": true, | |
"isBuildCommand": true, | |
"problemMatcher": { | |
"owner": "webpack", | |
"severity": "error", | |
"fileLocation": "absolute", | |
"pattern": [{ | |
"regexp": "ERROR in [^ ]* (.*):(.*):(.*)", | |
"file": 1, | |
"line": 2, | |
"column": 3 | |
}, | |
{ | |
"regexp": ".*", | |
"message": 0 | |
} | |
], | |
"watchedTaskBeginsRegExp": "webpack: bundle is now INVALID.", | |
"watchedTaskEndsRegExp": "webpack: bundle is now VALID." | |
} | |
}] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
updated version of problem matcher: