Skip to content

Commit e63a0a6

Browse files
committedMar 7, 2022
upgrade dependency and make it es6 code
1 parent 378b7c4 commit e63a0a6

File tree

98 files changed

+4024
-2365
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

98 files changed

+4024
-2365
lines changed
 

‎.vscode/settings.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"files.exclude": {
66
"**/.git": true,
77
"**/.DS_Store": true,
8-
"build": true,
8+
"build": false,
99
"node_modules": true,
1010
}
1111
}

‎.vscode/tasks.json

+13-5
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,25 @@
77
// ${cwd}: the current working directory of the spawned process
88

99
{
10-
"version": "0.1.0",
10+
"version": "2.0.0",
1111
"command": "npm",
12-
"isShellCommand": true,
1312
"args": [
1413
"run"
1514
],
1615
"tasks": [
1716
{
18-
"taskName": "build",
19-
"args": [],
20-
"isBuildCommand": true
17+
"label": "build",
18+
"type": "shell",
19+
"command": "npm",
20+
"args": [
21+
"run",
22+
"build"
23+
],
24+
"problemMatcher": [],
25+
"group": {
26+
"_id": "build",
27+
"isDefault": false
28+
}
2129
}
2230
]
2331
}

0 commit comments

Comments
 (0)
Please sign in to comment.