Skip to content

Commit

Permalink
fix: add src/* to package.json#files, fixes #310 (#311)
Browse files Browse the repository at this point in the history
  • Loading branch information
broofa committed Apr 24, 2024
1 parent 39ca9fa commit fc4fa81
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .vscode/tasks.json
@@ -0,0 +1,18 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Start App",
"type": "shell",
"group": "build",
"command": "npm run build:watch",
"presentation": {
"reveal": "always",
"panel": "new"
},
"runOptions": {
"runOn": "folderOpen",
}
}
]
}
1 change: 1 addition & 0 deletions package.json
Expand Up @@ -17,6 +17,7 @@
"./package.json": "./package.json"
},
"files": [
"src/*",
"dist/src/*",
"dist/types/*",
"bin/*"
Expand Down

0 comments on commit fc4fa81

Please sign in to comment.