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

🧑‍💻 fix: 修复 Babel + Lint 在 ES Module 下失效的问题 #143

Merged
merged 2 commits into from
Dec 29, 2023
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
File renamed without changes.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,20 @@
[![Author](https://img.shields.io/badge/Author-Wisdom-9cf)](https://github.com/pdsuwwz)
[![License](https://img.shields.io/github/license/pdsuwwz/vite-pinia-starter?color=blue)](https://github.com/pdsuwwz/vite-pinia-starter/blob/main/LICENSE)

🐝 Starter Example using `Vue 3.x`, `Vite 4.x` and `Pinia@next` 🍍
🐝 Starter Example using `Vue 3.x`, `Vite 5.x` and `Pinia@next` 🍍

[🚀 Live Demo 在线体验](https://pdsuwwz.github.io/vite-pinia-starter)

## 🌱 不同版本
目前一共有以下五个不同技术栈的仓库模板在持续维护,请尝试后选择适合自己的模板使用

- 💥 (推荐) [TS + Pinia + 🌐 低耦合(i18n)多语言 Vite4 + Vue3 + TS + Pinia + Element-Plus2 + vue-i18n@next](https://github.com/pdsuwwz/vue-boilerplate-i18n)
- 💥 (推荐) [TS + Pinia + 🌐 低耦合(i18n)多语言 Vite5 + Vue3 + TS + Pinia + Element-Plus2 + vue-i18n@next](https://github.com/pdsuwwz/vue-boilerplate-i18n)

- ⚡️ TS + Pinia 版 [Vite4 + Vue3 + TS + Pinia + Element-Plus2 + useLocale + i18n](https://github.com/pdsuwwz/pinia-starter-ts)
- ⚡️ JS + Pinia 版 (当前仓库)[Vite4 + Vue3 + Pinia + Element-Plus2 + useLocale + i18n](https://github.com/pdsuwwz/vite-pinia-starter)
- ⚡️ TS + Pinia 版 [Vite5 + Vue3 + TS + Pinia + Element-Plus2 + useLocale + i18n](https://github.com/pdsuwwz/pinia-starter-ts)
- ⚡️ JS + Pinia 版 (当前仓库)[Vite5 + Vue3 + Pinia + Element-Plus2 + useLocale + i18n](https://github.com/pdsuwwz/vite-pinia-starter)

- ⚡️ TS + Vuex4 版 [Vite4 + Vue3 + TS + Vuex4 + Element-Plus2 + useLocale + i18n](https://github.com/pdsuwwz/vite-ts-starter)
- ⚡️ JS + Vuex4 版 [Vite4 + Vue3 + Vuex4 + Element-Plus2 + useLocale + i18n](https://github.com/pdsuwwz/vite-starter)
- ⚡️ TS + Vuex4 版 [Vite5 + Vue3 + TS + Vuex4 + Element-Plus2 + useLocale + i18n](https://github.com/pdsuwwz/vite-ts-starter)
- ⚡️ JS + Vuex4 版 [Vite5 + Vue3 + Vuex4 + Element-Plus2 + useLocale + i18n](https://github.com/pdsuwwz/vite-starter)


## Screenshot
Expand Down
File renamed without changes.
61 changes: 31 additions & 30 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
{
"name": "vite-pinia-starter",
"description": "🐝 Starter Example using Vue 3.x, Vite 4.x and Pinia@next 🍍",
"description": "🐝 Starter Example using Vue 3.x, Vite 5.x and Pinia@next 🍍",
"version": "0.0.1",
"author": "Wisdom <[email protected]>",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "vite --host",
"build": "vite build",
Expand Down Expand Up @@ -42,46 +43,46 @@
"url": "https://github.com/pdsuwwz/vite-pinia-starter/issues"
},
"dependencies": {
"@element-plus/icons-vue": "2.1.0",
"@fortawesome/fontawesome-svg-core": "6.4.0",
"@fortawesome/free-brands-svg-icons": "6.4.0",
"@fortawesome/free-regular-svg-icons": "6.4.0",
"@fortawesome/free-solid-svg-icons": "6.4.0",
"@fortawesome/vue-fontawesome": "~3.0.3",
"axios": "1.4.0",
"echarts": "^5.4.2",
"element-plus": "2.3.7",
"@element-plus/icons-vue": "2.3.1",
"@fortawesome/fontawesome-svg-core": "6.5.1",
"@fortawesome/free-brands-svg-icons": "6.5.1",
"@fortawesome/free-regular-svg-icons": "6.5.1",
"@fortawesome/free-solid-svg-icons": "6.5.1",
"@fortawesome/vue-fontawesome": "~3.0.5",
"axios": "1.6.3",
"echarts": "^5.4.3",
"element-plus": "2.4.4",
"js-cookie": "^3.0.5",
"lodash": "^4.17.21",
"nprogress": "^0.2.0",
"pinia": "^2.1.3",
"vue": "^3.3.4",
"vue-router": "^4.2.1"
"pinia": "^2.1.7",
"vue": "^3.4.0",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/eslint-parser": "^7.21.8",
"@babel/preset-env": "^7.21.5",
"@babel/core": "^7.23.6",
"@babel/eslint-parser": "^7.23.3",
"@babel/preset-env": "^7.23.6",
"@sucrase/jest-plugin": "^3.0.0",
"@vitejs/plugin-vue": "^4.2.3",
"@vue/compiler-sfc": "^3.3.4",
"@vue/test-utils": "^2.3.2",
"@vue/vue3-jest": "29.2.4",
"babel-jest": "^29.5.0",
"@vitejs/plugin-vue": "^5.0.0",
"@vue/compiler-sfc": "^3.4.0",
"@vue/test-utils": "^2.4.3",
"@vue/vue3-jest": "29.2.6",
"babel-jest": "^29.7.0",
"babel-plugin-transform-vite-meta-env": "^1.0.3",
"cross-env": "^7.0.3",
"eslint": "^8.41.0",
"eslint-plugin-import": "^2.27.5",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-vue": "9.15.1",
"eslint-plugin-vue": "9.19.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "29.5.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-transform-stub": "^2.0.0",
"rollup": "^3.23.0",
"sass": "^1.62.1",
"sucrase": "^3.32.0",
"vite": "^4.3.8"
"rollup": "^4.9.1",
"sass": "^1.69.6",
"sucrase": "^3.35.0",
"vite": "^5.0.10"
}
}
Loading