Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
najiu-admin-template
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
najiu-frontend
najiu-admin-template
Commits
f2442280
Commit
f2442280
authored
Jan 23, 2021
by
vben
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
chore: update deps
parent
43503d59
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
26 additions
and
30 deletions
+26
-30
package.json
package.json
+3
-3
main.ts
src/main.ts
+1
-0
vite.config.ts
vite.config.ts
+1
-1
yarn.lock
yarn.lock
+21
-26
No files found.
package.json
View file @
f2442280
...
@@ -46,7 +46,7 @@
...
@@ -46,7 +46,7 @@
"devDependencies"
:
{
"devDependencies"
:
{
"
@commitlint/cli
"
:
"
^11.0.0
"
,
"
@commitlint/cli
"
:
"
^11.0.0
"
,
"
@commitlint/config-conventional
"
:
"
^11.0.0
"
,
"
@commitlint/config-conventional
"
:
"
^11.0.0
"
,
"
@iconify/json
"
:
"
^1.1.2
89
"
,
"
@iconify/json
"
:
"
^1.1.2
90
"
,
"
@ls-lint/ls-lint
"
:
"
^1.9.2
"
,
"
@ls-lint/ls-lint
"
:
"
^1.9.2
"
,
"
@purge-icons/generated
"
:
"
^0.5.2
"
,
"
@purge-icons/generated
"
:
"
^0.5.2
"
,
"
@types/echarts
"
:
"
^4.9.3
"
,
"
@types/echarts
"
:
"
^4.9.3
"
,
...
@@ -64,7 +64,7 @@
...
@@ -64,7 +64,7 @@
"
@typescript-eslint/eslint-plugin
"
:
"
^4.14.0
"
,
"
@typescript-eslint/eslint-plugin
"
:
"
^4.14.0
"
,
"
@typescript-eslint/parser
"
:
"
^4.14.0
"
,
"
@typescript-eslint/parser
"
:
"
^4.14.0
"
,
"
@vitejs/plugin-legacy
"
:
"
^1.2.1
"
,
"
@vitejs/plugin-legacy
"
:
"
^1.2.1
"
,
"
@vitejs/plugin-vue
"
:
"
^1.1.
0
"
,
"
@vitejs/plugin-vue
"
:
"
^1.1.
1
"
,
"
@vitejs/plugin-vue-jsx
"
:
"
^1.0.2
"
,
"
@vitejs/plugin-vue-jsx
"
:
"
^1.0.2
"
,
"
@vue/compiler-sfc
"
:
"
^3.0.5
"
,
"
@vue/compiler-sfc
"
:
"
^3.0.5
"
,
"
@vuedx/typecheck
"
:
"
^0.6.0
"
,
"
@vuedx/typecheck
"
:
"
^0.6.0
"
,
...
@@ -98,7 +98,7 @@
...
@@ -98,7 +98,7 @@
"
stylelint-order
"
:
"
^4.1.0
"
,
"
stylelint-order
"
:
"
^4.1.0
"
,
"
ts-node
"
:
"
^9.1.1
"
,
"
ts-node
"
:
"
^9.1.1
"
,
"
typescript
"
:
"
^4.1.3
"
,
"
typescript
"
:
"
^4.1.3
"
,
"
vite
"
:
"
2.0.0-beta.
36
"
,
"
vite
"
:
"
2.0.0-beta.
44
"
,
"
vite-plugin-html
"
:
"
^2.0.0-beta.6
"
,
"
vite-plugin-html
"
:
"
^2.0.0-beta.6
"
,
"
vite-plugin-mock
"
:
"
^2.0.0-rc.2
"
,
"
vite-plugin-mock
"
:
"
^2.0.0-rc.2
"
,
"
vite-plugin-purge-icons
"
:
"
^0.5.2
"
,
"
vite-plugin-purge-icons
"
:
"
^0.5.2
"
,
...
...
src/main.ts
View file @
f2442280
...
@@ -19,6 +19,7 @@ registerGlobComp(app);
...
@@ -19,6 +19,7 @@ registerGlobComp(app);
// Multilingual configuration
// Multilingual configuration
setupI18n
(
app
);
setupI18n
(
app
);
// Configure routing
// Configure routing
setupRouter
(
app
);
setupRouter
(
app
);
...
...
vite.config.ts
View file @
f2442280
...
@@ -29,6 +29,7 @@ export default ({ command, mode }: ConfigEnv): UserConfig => {
...
@@ -29,6 +29,7 @@ export default ({ command, mode }: ConfigEnv): UserConfig => {
const
isBuild
=
command
===
'
build
'
;
const
isBuild
=
command
===
'
build
'
;
return
{
return
{
base
:
VITE_PUBLIC_PATH
,
root
,
root
,
alias
:
{
alias
:
{
'
/@/
'
:
`
${
pathResolve
(
'
src
'
)}
/`
,
'
/@/
'
:
`
${
pathResolve
(
'
src
'
)}
/`
,
...
@@ -41,7 +42,6 @@ export default ({ command, mode }: ConfigEnv): UserConfig => {
...
@@ -41,7 +42,6 @@ export default ({ command, mode }: ConfigEnv): UserConfig => {
},
},
},
},
build
:
{
build
:
{
base
:
VITE_PUBLIC_PATH
,
polyfillDynamicImport
:
VITE_LEGACY
,
polyfillDynamicImport
:
VITE_LEGACY
,
terserOptions
:
{
terserOptions
:
{
compress
:
{
compress
:
{
...
...
yarn.lock
View file @
f2442280
...
@@ -1184,10 +1184,10 @@
...
@@ -1184,10 +1184,10 @@
dependencies:
dependencies:
cross-fetch "^3.0.6"
cross-fetch "^3.0.6"
"@iconify/json@^1.1.2
89
":
"@iconify/json@^1.1.2
90
":
version "1.1.2
89
"
version "1.1.2
90
"
resolved "https://registry.npmjs.org/@iconify/json/-/json-1.1.2
89.tgz#ae9dac0fc022bfee52c69903e26d02387c0c0afa
"
resolved "https://registry.npmjs.org/@iconify/json/-/json-1.1.2
90.tgz#14a568464f7d21fe644540aba29f3fa52a9c4080
"
integrity sha512-
KZBT4ypgNiCHzfUxqutisZGU3Bs14xX+/YPAGY6yt0/xTld+CB8W5w8mZMdPfjZHsdygYnR1iHNEJfAuR9BkKg
==
integrity sha512-
CZkFvzNvAk56No7gWldVCDrh+tz8zmCA0bBH0UDf4APVFwxofR/Ri7vPWB1Lj9fTiMlavYYGkz0oTIWYTH+CyQ
==
"@intlify/core-base@9.0.0-beta.16":
"@intlify/core-base@9.0.0-beta.16":
version "9.0.0-beta.16"
version "9.0.0-beta.16"
...
@@ -1840,10 +1840,10 @@
...
@@ -1840,10 +1840,10 @@
"@vue/babel-plugin-jsx" "^1.0.1"
"@vue/babel-plugin-jsx" "^1.0.1"
hash-sum "^2.0.0"
hash-sum "^2.0.0"
"@vitejs/plugin-vue@^1.1.
0
":
"@vitejs/plugin-vue@^1.1.
1
":
version "1.1.
0
"
version "1.1.
1
"
resolved "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-1.1.
0.tgz#8ae0b11388897b07259c9e5198c0e3fb5e4b37d9
"
resolved "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-1.1.
1.tgz#6eccd9aa0a2c3365048bf82b9fee437e995ae15d
"
integrity sha512-
ExlAt3nb3PB31jV9AgRZSMoGd+aQRU53fc/seghV8/l0JCzaX2mqlgpG8iytWkRxbBPgtAx4TpCPdiVKnTFT/
A==
integrity sha512-
Oia369l4L4Wd6hW0paQ1OUsPbGHd85KQllismua65C45xMu40og5lzGreSuGEtW+6yB0I5FyLrC7tk5yCucHw
A==
"@vue/babel-helper-vue-transform-on@^1.0.0":
"@vue/babel-helper-vue-transform-on@^1.0.0":
version "1.0.0"
version "1.0.0"
...
@@ -3121,11 +3121,6 @@ conventional-changelog-core@^4.2.1:
...
@@ -3121,11 +3121,6 @@ conventional-changelog-core@^4.2.1:
shelljs "^0.8.3"
shelljs "^0.8.3"
through2 "^4.0.0"
through2 "^4.0.0"
conventional-changelog-custom-config@^0.3.1:
version "0.3.1"
resolved "https://registry.npmjs.org/conventional-changelog-custom-config/-/conventional-changelog-custom-config-0.3.1.tgz#4a6433138d602a2b7ecc81729feb6fa1855bff7b"
integrity sha512-d4Lre8VZll1SVRmpoUe/LSj8Ge8QOt7u8MQyGz8vu/H/KiWf5rvdYkBo5z268QvkUrF43eI64QxVcqd9XOLsew==
conventional-changelog-ember@^2.0.9:
conventional-changelog-ember@^2.0.9:
version "2.0.9"
version "2.0.9"
resolved "https://registry.npmjs.org/conventional-changelog-ember/-/conventional-changelog-ember-2.0.9.tgz#619b37ec708be9e74a220f4dcf79212ae1c92962"
resolved "https://registry.npmjs.org/conventional-changelog-ember/-/conventional-changelog-ember-2.0.9.tgz#619b37ec708be9e74a220f4dcf79212ae1c92962"
...
@@ -3736,16 +3731,16 @@ esbuild-register@^1.2.1:
...
@@ -3736,16 +3731,16 @@ esbuild-register@^1.2.1:
source-map-support "^0.5.19"
source-map-support "^0.5.19"
strip-json-comments "^3.1.1"
strip-json-comments "^3.1.1"
esbuild@^0.8.26:
version "0.8.31"
resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.8.31.tgz#c21e7adb3ad283c951a53de7ad64a5ae2df2ed34"
integrity sha512-7EIU0VdUxltwivjVezX3HgeNzeIVR1snkrAo57WdUnuBMykdzin5rTrxwCDM6xQqj0RL/HjOEm3wFr2ijHKeaA==
esbuild@^0.8.29:
esbuild@^0.8.29:
version "0.8.30"
version "0.8.30"
resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.8.30.tgz#3d057ff9ffe6d5d30bccb0afe8cc92a2e69622d3"
resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.8.30.tgz#3d057ff9ffe6d5d30bccb0afe8cc92a2e69622d3"
integrity sha512-gCJQYUMO9QNrfpNOIiCnFoX41nWiPFCvURBQF+qWckyJ7gmw2xCShdKCXvS+RZcQ5krcxEOLIkzujqclePKhfw==
integrity sha512-gCJQYUMO9QNrfpNOIiCnFoX41nWiPFCvURBQF+qWckyJ7gmw2xCShdKCXvS+RZcQ5krcxEOLIkzujqclePKhfw==
esbuild@^0.8.34:
version "0.8.34"
resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.8.34.tgz#16b4ac58f74c821d2c5a8c2f0585ca96a38ab4e6"
integrity sha512-tnr0V1ooakYr1aRLXQLzCn2GVG1kBTW3FWpRyC+NgrR3ntsouVpJOlTOV0BS4YLATx3/c+x3h/uBq9lWJlUAtQ==
escalade@^3.1.1:
escalade@^3.1.1:
version "3.1.1"
version "3.1.1"
resolved "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40"
resolved "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40"
...
@@ -8368,12 +8363,12 @@ vite-plugin-style-import@^0.4.6:
...
@@ -8368,12 +8363,12 @@ vite-plugin-style-import@^0.4.6:
"@rollup/pluginutils" "^4.1.0"
"@rollup/pluginutils" "^4.1.0"
change-case "^4.1.2"
change-case "^4.1.2"
vite@2.0.0-beta.
36
:
vite@2.0.0-beta.
44
:
version "2.0.0-beta.
36
"
version "2.0.0-beta.
44
"
resolved "https://registry.npmjs.org/vite/-/vite-2.0.0-beta.
36.tgz#ccecac854ded0b7c0fe14c52c0460e1c23a9c70b
"
resolved "https://registry.npmjs.org/vite/-/vite-2.0.0-beta.
44.tgz#df3846160066a121d85dbc8ec11c9fa9a71347f2
"
integrity sha512-
+Q/Twq1/tpNQIZl0HSFTqiEuP7lXj+6H/f9q63+s5I2K/sqgSUajL3PL7W9uUUIv9dYpJ1eLqkO42ppH9w9Ldw
==
integrity sha512-
NTzmP7HEKDg3J5r3I22f87jK3ugPVEU81BQ8hWn3hNWU0msCziUlj7aHwItSUEbQA+ymqO3TBO2fN7Aa+OKckQ
==
dependencies:
dependencies:
esbuild "^0.8.
26
"
esbuild "^0.8.
34
"
postcss "^8.2.1"
postcss "^8.2.1"
resolve "^1.19.0"
resolve "^1.19.0"
rollup "^2.35.1"
rollup "^2.35.1"
...
@@ -8396,9 +8391,9 @@ vscode-web-custom-data@^0.3.2:
...
@@ -8396,9 +8391,9 @@ vscode-web-custom-data@^0.3.2:
integrity sha512-GGZ99dJbARyh6rv03dXZImGlP5WvNG382A3nIt0yX1uyqBa558L/klHWcgEJzcVkG4t16OQWwPedMR3JkeD2Qg==
integrity sha512-GGZ99dJbARyh6rv03dXZImGlP5WvNG382A3nIt0yX1uyqBa558L/klHWcgEJzcVkG4t16OQWwPedMR3JkeD2Qg==
vue-demi@latest:
vue-demi@latest:
version "0.
4.5
"
version "0.
6.0
"
resolved "https://registry.npmjs.org/vue-demi/-/vue-demi-0.
4.5.tgz#ea422a4468cb6321a746826a368a770607f87791
"
resolved "https://registry.npmjs.org/vue-demi/-/vue-demi-0.
6.0.tgz#e314282f704cb449119b9fd002cbbc0e39f591fe
"
integrity sha512-
51xf1B6hV2PfjnzYHO/yUForFCRQ49KS8ngQb5T6l1HDEmfghTFtsxtRa5tbx4eqQsH76ll/0gIxuf1gei0ub
w==
integrity sha512-
8GEJa0mHJpYJeGeq5fD1pJct2kfdl30PHfmL1NaJ97mgKPyKojlIRt/3inGBK4Y0ylCI6T5vOo3chwpqDOq/H
w==
vue-eslint-parser@^7.4.1:
vue-eslint-parser@^7.4.1:
version "7.4.1"
version "7.4.1"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment