Skip to content

Commit

Permalink
chore: gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
haokejie committed Jul 12, 2023
1 parent 1e7c92a commit 25f37b9
Show file tree
Hide file tree
Showing 3 changed files with 78 additions and 2 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
node_modules
dist
package.json
.DS_Store

# local env files
Expand Down
78 changes: 78 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
{
"name": "vue3test",
"version": "1.0.0",
"description": "test",
"scripts": {
"test": "webpack-dev-server --mode=development ",
"test:build": "webpack --mode=production ",
"build": "node script/build.js build --mode=production && electron-builder --x64",
"dev": "node script/dev-runner.js dev --mode development",
"build:mac": "node script/build.js build --mode=production && electron-builder --mac --x64",
"prepare": "husky install",
"eslint": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"main": "dist/electron/main.js",
"keywords": [
"electron",
"vue3",
"webpack"
],
"author": "haokejie <https://github.com/haokejie>",
"license": "MIT",
"dependencies": {
"ant-design-vue": "^4.0.0-rc.5",
"dotenv": "^16.3.1",
"uuid": "^9.0.0",
"vue": "^3.3.4"
},
"devDependencies": {
"@babel/preset-typescript": "^7.22.5",
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@types/node": "^20.3.3",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"@vue/babel-plugin-jsx": "^1.1.4",
"@vue/compiler-sfc": "^3.3.4",
"@vue/tsconfig": "^0.4.0",
"babel-loader": "^9.1.2",
"commander": "^11.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"dotenv-webpack": "^8.0.1",
"electron": "^25.2.0",
"electron-builder": "^24.4.0",
"eslint": "^8.43.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-vue": "^9.15.1",
"fork-ts-checker-webpack-plugin": "^8.0.0",
"html-webpack-plugin": "^5.5.3",
"husky": "^8.0.3",
"less-loader": "^11.1.3",
"lint-staged": "^13.2.3",
"multispinner": "^0.2.1",
"node-loader": "^2.0.0",
"portfinder": "^1.0.32",
"prettier": "^2.8.8",
"process": "^0.11.10",
"style-loader": "^3.3.3",
"ts-loader": "^9.4.4",
"typescript": "^5.1.6",
"unplugin-auto-import": "^0.16.4",
"vue-eslint-parser": "^9.3.1",
"vue-loader": "^17.2.2",
"webpack": "^5.88.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
}
1 change: 0 additions & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ import { Button as AButton } from 'ant-design-vue'
test9({ name: '99' })
// 打印出process.env 中所有变量
console.log(process)
console.log(hhh)
const count = ref(0)
const add = () => {
test9({ name: '9aa9' })
Expand Down

0 comments on commit 25f37b9

Please sign in to comment.