Skip to content

Commit fc4fa81

Browse files
authored
fix: add src/* to package.json#files, fixes #310 (#311)
1 parent 39ca9fa commit fc4fa81

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

.vscode/tasks.json

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "Start App",
6+
"type": "shell",
7+
"group": "build",
8+
"command": "npm run build:watch",
9+
"presentation": {
10+
"reveal": "always",
11+
"panel": "new"
12+
},
13+
"runOptions": {
14+
"runOn": "folderOpen",
15+
}
16+
}
17+
]
18+
}

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
"./package.json": "./package.json"
1818
},
1919
"files": [
20+
"src/*",
2021
"dist/src/*",
2122
"dist/types/*",
2223
"bin/*"

0 commit comments

Comments
 (0)