Skip to content

Commit 48990e1

Browse files
Bump version to 1.0.2 and add VS Code tasks configuration
1 parent 617caec commit 48990e1

File tree

2 files changed

+73
-1
lines changed

2 files changed

+73
-1
lines changed

.vscode/tasks.json

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
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+
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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",

0 commit comments

Comments
 (0)