File tree Expand file tree Collapse file tree 2 files changed +73
-1
lines changed Expand file tree Collapse file tree 2 files changed +73
-1
lines changed Original file line number Diff line number Diff line change 1+ {
2+ "version" : " 2.0.0" ,
3+ "tasks" : [
4+ {
5+ "label" : " build" ,
6+ "type" : " npm" ,
7+ "script" : " build" ,
8+ "group" : {
9+ "kind" : " build" ,
10+ "isDefault" : true
11+ },
12+ "problemMatcher" : [" $tsc" ],
13+ "presentation" : {
14+ "reveal" : " always" ,
15+ "panel" : " shared"
16+ }
17+ },
18+ {
19+ "label" : " test" ,
20+ "type" : " npm" ,
21+ "script" : " test" ,
22+ "group" : {
23+ "kind" : " test" ,
24+ "isDefault" : true
25+ },
26+ "problemMatcher" : [" $jest" ],
27+ "presentation" : {
28+ "reveal" : " always" ,
29+ "panel" : " shared"
30+ }
31+ },
32+ {
33+ "label" : " lint" ,
34+ "type" : " npm" ,
35+ "script" : " lint" ,
36+ "problemMatcher" : [" $eslint-stylish" ],
37+ "presentation" : {
38+ "reveal" : " always" ,
39+ "panel" : " shared"
40+ }
41+ },
42+ {
43+ "label" : " start:dev" ,
44+ "type" : " npm" ,
45+ "script" : " dev" ,
46+ "isBackground" : true ,
47+ "problemMatcher" : {
48+ "pattern" : {
49+ "regexp" : " ^.*$"
50+ },
51+ "background" : {
52+ "activeOnStart" : true ,
53+ "beginsPattern" : " .*" ,
54+ "endsPattern" : " Watching for file changes"
55+ }
56+ },
57+ "presentation" : {
58+ "reveal" : " always" ,
59+ "panel" : " shared"
60+ }
61+ },
62+ {
63+ "label" : " clean" ,
64+ "type" : " npm" ,
65+ "script" : " clean" ,
66+ "presentation" : {
67+ "reveal" : " always" ,
68+ "panel" : " shared"
69+ }
70+ }
71+ ]
72+ }
Original file line number Diff line number Diff line change 11{
22 "name" : " @webmasterdevlin/json-server" ,
3- "version" : " 1.0.1 " ,
3+ "version" : " 1.0.2 " ,
44 "description" : " A TypeScript implementation of json-server with additional features" ,
55 "main" : " dist/index.js" ,
66 "types" : " dist/index.d.ts" ,
You can’t perform that action at this time.
0 commit comments