-
Notifications
You must be signed in to change notification settings - Fork 205
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
jzfai
committed
Sep 12, 2022
1 parent
48d2e54
commit 4d42ccd
Showing
57 changed files
with
2,046 additions
and
608 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,9 @@ | |
/dist-ssr | ||
/node_modules | ||
|
||
#lock | ||
pnpm-lock.yaml | ||
|
||
# Logs | ||
logs | ||
*.log | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
{ | ||
"extends": "./tsconfig.base.json", | ||
"compilerOptions": { | ||
"baseUrl": "./", | ||
"paths": { | ||
"@/*": ["src/*"] | ||
"@/*": ["src/*"], | ||
"~/*": ["typings/*"] | ||
} | ||
}, | ||
"include": ["src/*/**"] | ||
"include": ["src", "typings", "auto-imports.d.ts"], | ||
"exclude": ["node_modules", "**/dist"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,22 @@ | ||
{ | ||
"name": "vue3-admin-plus", | ||
"version": "1.9.1", | ||
"version": "1.9.3", | ||
"license": "MIT", | ||
"author": "kuanghua([email protected])", | ||
"author": "kuanghua", | ||
"packageManager": "[email protected]", | ||
"scripts": { | ||
"dev": "vite --mode serve-dev", | ||
"test": "vite --mode serve-test", | ||
"build:test": "vite build --mode build-test", | ||
"build": "vite build --mode build", | ||
"preview": "npm run build && vite preview ", | ||
"preview:build": "npm run build && vite preview ", | ||
"preview": "vite preview ", | ||
"lint": "eslint --ext .js,.jsx,.vue,.ts,.tsx src --fix", | ||
"prepare": "husky install", | ||
"test:unit": "vue-cli-service test:unit", | ||
"test:watchAll": "vue-cli-service test:unit --watchAll", | ||
"test:cov": "vue-cli-service test:unit --coverage", | ||
"test:majestic": "majestic" | ||
}, | ||
"peerDependencies": { | ||
"vue": "^3.2.26" | ||
"vitest": "vitest --ui", | ||
"coverage": "vitest run --coverage" | ||
}, | ||
"dependencies": { | ||
"@element-plus/icons-vue": "^2.0.4", | ||
"@element-plus/icons-vue": "^2.0.9", | ||
"@tinymce/tinymce-vue": "^4", | ||
"@vueuse/core": "^8.7.5", | ||
"axios": "0.21.3", | ||
|
@@ -42,62 +37,54 @@ | |
"sortablejs": "1.15.0", | ||
"splitpanes": "^3.1.1", | ||
"tinymce": "6.1.0", | ||
"vue": "3.2.37", | ||
"vue": "^3.2.39", | ||
"vue-i18n": "^9.1.10", | ||
"vue-router": "4.0.14", | ||
"vxe-table": "4.3.0-beta.5", | ||
"vue-router": "^4.0.14", | ||
"vxe-table": "4.3.5", | ||
"xe-utils": "^3.5.6", | ||
"xlsx": "^0.18.5" | ||
}, | ||
"devDependencies": { | ||
"@babel/eslint-parser": "7.16.3", | ||
"@babel/preset-env": "^7.17.10", | ||
"@babel/preset-typescript": "7.16.7", | ||
"@types/echarts": "4.9.7", | ||
"@types/jest": "<27", | ||
"@types/mockjs": "1.0.6", | ||
"@types/node": "^17.0.35", | ||
"@typescript-eslint/eslint-plugin": "5.5.0", | ||
"@typescript-eslint/parser": "5.5.0", | ||
"@vitejs/plugin-legacy": "1.6.4", | ||
"@vitejs/plugin-vue": "^2.3.3", | ||
"@vitejs/plugin-vue-jsx": "1.3.1", | ||
"@vue/cli-plugin-unit-jest": "4.5.17", | ||
"@vitest/coverage-c8": "^0.22.1", | ||
"@vitest/ui": "^0.22.1", | ||
"@vue/cli-service": "4.5.17", | ||
"@vue/test-utils": "^2.0.0-rc.18", | ||
"@vue/test-utils": "^2.0.2", | ||
"@vueuse/core": "^8.7.5", | ||
"babel-jest": "<27", | ||
"eslint": "7.32.0", | ||
"eslint-config-prettier": "8.3.0", | ||
"eslint-define-config": "1.2.0", | ||
"eslint-plugin-import": "2.25.3", | ||
"eslint-plugin-prettier": "4.0.0", | ||
"eslint-plugin-vue": "8.1.1", | ||
"husky": "7.0.2", | ||
"jest": "<27", | ||
"jest-serializer-vue": "^2.0.2", | ||
"jest-transform-stub": "^2.0.0", | ||
"majestic": "1.8.1", | ||
"jsdom": "16.4.0", | ||
"mockjs": "1.1.0", | ||
"prettier": "2.2.1", | ||
"resize-observer-polyfill": "^1.5.1", | ||
"sass": "^1.52.1", | ||
"svg-sprite-loader": "6.0.11", | ||
"ts-jest": "<27", | ||
"ts-node": "10.7.0", | ||
"tslib": "^2.4.0", | ||
"typescript": "^4.7.2", | ||
"unocss": "^0.33.5", | ||
"unplugin-auto-import": "^0.5.11", | ||
"unplugin-vue-components": "^0.19.5", | ||
"unplugin-vue-define-options": "^0.6.1", | ||
"vite": "^3.0.0", | ||
"vite-plugin-html": "^3.2.0", | ||
"vite-plugin-mkcert": "^1.7.2", | ||
"vite-plugin-mock": "^2.9.6", | ||
"vite-plugin-style-import": "1.2.1", | ||
"vite-plugin-svg-icons": "1.0.5", | ||
"vue-jest": "^5.0.0-alpha.10", | ||
"vue-tsc": "^0.34.16", | ||
"vite-plugin-mkcert": "^1.7.2", | ||
"unplugin-vue-define-options": "^0.6.1", | ||
"unocss": "^0.33.5" | ||
"vitest": "^0.22.1", | ||
"vue-tsc": "^0.34.16" | ||
}, | ||
"pnpm": { | ||
"peerDependencyRules": { | ||
|
Oops, something went wrong.