Skip to content

Commit a2479d0

Browse files
committed
Prepare for scoped NPM package publishing
1 parent e015570 commit a2479d0

File tree

5 files changed

+214
-364
lines changed

5 files changed

+214
-364
lines changed

.github/workflows/node.js.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,3 @@ jobs:
2828
cache: 'npm'
2929
- run: npm install
3030
- run: npm run test
31-
- run: npm run test-extended

.npmignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
.nyc_output/
22
.vscode/
3+
.github/
34
bin/app/
45
coverage/
56
src/

.vscode/tasks.json

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,19 @@
11
{
22
// See https://go.microsoft.com/fwlink/?LinkId=733558
33
// for the documentation about the tasks.json format
4-
"version": "0.1.0",
4+
"version": "2.0.0",
55
"command": "tsc",
6-
"isShellCommand": true,
7-
"showOutput": "silent",
8-
"problemMatcher": "$tsc"
6+
"problemMatcher": "$tsc",
7+
"tasks": [
8+
{
9+
"label": "tsc",
10+
"type": "shell",
11+
"command": "tsc",
12+
"problemMatcher": "$tsc",
13+
"group": {
14+
"_id": "build",
15+
"isDefault": false
16+
}
17+
}
18+
]
919
}

0 commit comments

Comments
 (0)