Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(ignore): 调整vscode的插件忽略文件,同时取消package的时候压缩丑化代码 #36

Merged
merged 1 commit into from
Apr 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .swcrc
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@
"target": "es5",
"loose": false,
"externalHelpers": false,
"keepClassNames": false
"keepClassNames": false,
"minify": {
"keep_fnames": true
}
},
"minify": true
"minify": false
}
7 changes: 7 additions & 0 deletions .vscodeignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,10 @@ resources/bootstrap-icons.woff
.github/**
.husky/**
.eslintignore
TODO.md
TODO-ZN.md
CONTRIBUTING.md
.commitlintrc.json
.all-contributorsrc
.release-it.json
yarn.lock
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "bookmark-manager",
"displayName": "Bookmark Manager (BM)",
"description": "Simple and easy to use bookmark manager",
"version": "0.0.30",
"version": "0.0.31",
"engines": {
"vscode": "^1.82.0"
},
Expand All @@ -28,7 +28,7 @@
"vscode:prepublish": "yarn run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"package": "webpack --devtool hidden-source-map",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "yarn run compile-tests && yarn run compile && yarn run lint",
Expand Down
Loading