Skip to content

Commit

Permalink
打包为 dist
Browse files Browse the repository at this point in the history
  • Loading branch information
sumneko committed Jul 29, 2024
1 parent 2f50e61 commit ad043cb
Show file tree
Hide file tree
Showing 6 changed files with 1,276 additions and 37 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ node_modules
*.vsix
*.log
tmp
dist
42 changes: 21 additions & 21 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "watch",
"problemMatcher": "$tsc-watch",
"isBackground": true,
"presentation": {
"reveal": "never"
},
"group": {
"kind": "build",
"isDefault": true
}
},
{
"type": "shell",
"label": "🍟生成dts",
"command": "dts-bundle-generator src\\y3-helper.ts --o template\\plugin\\y3-helper.d.ts",
}
]
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "watch",
"problemMatcher": "$ts-webpack",
"isBackground": true,
"presentation": {
"reveal": "never"
},
"group": {
"kind": "build",
"isDefault": true
},
},
{
"type": "shell",
"label": "🍟生成dts",
"command": "dts-bundle-generator src\\y3-helper.ts --o template\\plugin\\y3-helper.d.ts",
}
]
}
13 changes: 8 additions & 5 deletions .vscodeignore
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
.vscode/**
.vscode-test/**
.vscode/
.vscode-test/
.gitignore
**/tsconfig.json
**/.eslintrc.json
**/*.map
.github/**
tmp/**
src/**
.github/
tmp/
src/
!src/**/*.json
**/*.log
node_modules
out/
webpack.config.json
Loading

0 comments on commit ad043cb

Please sign in to comment.