Merge pull request !6 from 佚名程序员/master
This commit is contained in:
h_mo 2023-03-08 13:04:51 +00:00 committed by Gitee
commit ba4f20c0a3
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
70 changed files with 1988 additions and 2039 deletions

View File

@ -1,21 +1,20 @@
# eslint 忽略检查 (根据项目需要自行添加)
node_modules
dist
.idea
.vscode
.hbuilderx
src/manifest.json
src/pages.json
src/tmui/
*.sh
node_modules
*.md
*.woff
*.ttf
*.yaml
dist
# 忽略目录
/dist
/build
/tests
/node_modules
/public
/docs
.husky
.local
/bin
/src/public
/src/static
/src/manifest.json
/vite.config.ts
/unocss.config.js
# node 覆盖率文件
coverage/
# 忽略文件
**/*-min.js
**/*.min.js
**/*-min.css
**/*.min.css

View File

@ -1,19 +1,22 @@
// 参考https://eslint.bootcss.com/docs/rules/
// 参考https://blog.csdn.net/x550392236/article/details/89497202
// 参考https://blog.csdn.net/brokenkay/article/details/111106266
module.exports = {
root: true,
env: {
browser: true,
es2021: true,
node: true, //允许运行在node环境下
browser: true, //允许运行在浏览器环境下
es2021: true, //允许运行es2021环境下语法
},
parser: 'vue-eslint-parser',
extends: [
'plugin:@typescript-eslint/recommended',
'plugin:vue/vue3-essential',
'prettier',
],
parserOptions: {
ecmaVersion: 'latest',
parser: '@typescript-eslint/parser',
sourceType: 'module',
parser: '@typescript-eslint/parser',
},
extends: ['plugin:vue/vue3-essential', 'eslint:recommended', 'plugin:@typescript-eslint/recommended', 'prettier'],
plugins: ['vue', '@typescript-eslint', 'prettier'],
settings: {
'import/resolver': {
alias: {
@ -22,16 +25,25 @@ module.exports = {
},
},
},
plugins: ['vue', '@typescript-eslint', 'prettier'],
globals: {
//可以定义全局中的变量的权限(只读,可读可写)
defineProps: 'readonly',
defineEmits: 'readonly',
defineExpose: 'readonly',
withDefaults: 'readonly',
uni: 'readonly',
},
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-var': 'error',
'no-var': 'error', //要求使用 let 或 const 而不是 var
'prettier/prettier': 'error',
'vue/no-multiple-template-root': 'off',
'no-mutating-props': 'off',
'vue/no-v-html': 'off',
// @fixable 必须使用单引号,禁止使用双引号
camelcase: 'error', // 双峰驼命名格式
// indent: ['error', 4], //代码缩进4个空格 (switch时与prettier发生冲突)
eqeqeq: ['error', 'always', { null: 'ignore' }], //比较时强制使用 === 或者 !==,但对null作比较时可以不用全等
quotes: [
'error',
'single',
@ -39,7 +51,7 @@ module.exports = {
avoidEscape: true,
allowTemplateLiterals: true,
},
],
], // @fixable 必须使用单引号,禁止使用双引号
// 结尾必须有分号;
semi: [
'error',
@ -47,7 +59,7 @@ module.exports = {
{
omitLastInOneLineBlock: true,
},
],
], // 结尾必须有分号;
'vue/script-setup-uses-vars': 'error',
'@typescript-eslint/ban-ts-ignore': 'off',
'@typescript-eslint/explicit-function-return-type': 'off',
@ -87,11 +99,4 @@ module.exports = {
'vue/attribute-hyphenation': 'off',
'vue/require-default-prop': 'off',
},
globals: {
defineProps: 'readonly',
defineEmits: 'readonly',
defineExpose: 'readonly',
withDefaults: 'readonly',
uni: 'readonly',
},
};

33
.gitignore vendored
View File

@ -1,11 +1,34 @@
node_modules
dist
.eslintcache
.pnpm-lock.yaml
*.local
# 日志
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*
node_modules
.DS_Store
dist
dist-ssr
coverage
*.local
.eslintcache
/cypress/videos/
/cypress/screenshots/
# 编辑器目录和文件
.vscode/*
.hbuilderx/*
!.vscode/extensions.json
!.vscode/settings.json
.idea
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
.eslintcache
.hbuilderx
pnpm-lock.yaml

View File

@ -1,20 +1,18 @@
# 忽略格式化文件 (根据项目需要自行添加)
node_modules
dist
.idea
.vscode
.hbuilderx
src/manifest.json
src/pages.json
*.sh
node_modules
*.md
*.woff
*.ttf
*.yaml
dist
# 忽略目录
/dist
/build
/tests
/node_modules
/public
/docs
.husky
.local
/bin
/src/public
/src/static
/src/manifest.json
# node 覆盖率文件
coverage/
# 忽略文件
**/*-min.js
**/*.min.js
**/*-min.css
**/*.min.css

View File

@ -1,25 +1,24 @@
module.exports = {
// 一行最多 160 字符
// .pellerrc 的架构 官网参考https://prettier.io/docs/en/options.html#tab-width
$schema: 'https://json.schemastore.org/prettierrc',
// 一行最多 120 字符
printWidth: 160,
// 不使用缩进符,而使用空格
useTabs: true,
// 使用 2 个空格缩进
// 使用 4 个空格缩进
tabWidth: 4,
tabSize: 4,
// 不使用 tab 缩进,而使用空格
useTabs: false,
// 行尾需要有分号
semi: true,
// 使用单引号
// 使用单引号代替双引号
singleQuote: true,
// 对象的 key 仅在必要时用引号 (可选值as-needed|consistent|preserve)
// 对象的 key 仅在必要时用引号
quoteProps: 'as-needed',
// jsx 不使用单引号,而使用双引号
jsxSingleQuote: false,
// 末尾不需要逗号 'es5' (可选值none|es5|all默认none)
trailingComma: 'es5',
// 大括号内的首尾需要空格
// 末尾使用逗号
trailingComma: 'all',
// 大括号内的首尾需要空格 { foo: bar }
bracketSpacing: true,
// jsx 标签的反尖括号需要换行
jsxBracketSameLine: false,
// 箭头函数,只有一个参数的时候,也需要括号
arrowParens: 'always',
// 每个文件格式化的范围是文件的全部内容
@ -29,12 +28,10 @@ module.exports = {
requirePragma: false,
// 不需要自动在文件开头插入 @prettier
insertPragma: false,
// 使用默认的折行标准 (可选值always|never|preserve)
// 使用默认的折行标准
proseWrap: 'preserve',
// 根据显示样式决定 html 要不要折行 (可选值css|strict|ignore)
// 根据显示样式决定 html 要不要折行
htmlWhitespaceSensitivity: 'css',
// vue脚本文件和样式的缩进
vueIndentScriptAndStyle: false,
// 换行符使用 lf 结尾是 (可选值auto|lf|crlf|cr)
// 换行符使用 lf
endOfLine: 'lf',
};

View File

@ -1,10 +1,10 @@
{
"recommendations": [
"CodeInChinese.EnglishChineseDictionary", // ()
"kisstkondoros.vscode-gutter-preview", // Image
"ritwickdey.LiveServer", //
"Vue.volar", // Vue
"Vue.vscode-typescript-vue-plugin", // TS使TS*.vue
"esbenp.prettier-vscode", //
"dbaeumer.vscode-eslint", //
"antfu.unocss", // UnoCSS css
"esbenp.prettier-vscode", //
"mrmlnc.vscode-autoprefixer" //less/scss/css
]
}
}

View File

@ -4,10 +4,11 @@
"editor.defaultFormatter": "esbenp.prettier-vscode", // ,
"editor.formatOnSave": true, //
"editor.detectIndentation": false, // #editor.tabSize# #editor.insertSpaces#
"editor.tabSize": 4,
"editor.tabSize": 4, // #editor.detectIndentation#
"editor.codeActionsOnSave": {
"source.fixAll": true, //
"source.fixAll.eslint": true,
"source.fixAll.stylelint": true
}, //
"files.eol": "\n" //.prettierrc.cjs
}

View File

@ -12,14 +12,14 @@
## 简介
- **uni-app Vue3 Vite4 pinia2 TypeScript 基础框架**
- cli创建的Vue3/Vite项目 与 使用HBuilderX导入插件 的包有差异,请直接访问 [开源地址](https://gitee.com/h_mo/uniapp-vue3-vite-ts-template)
- 访问[uniapp插件](https://ext.dcloud.net.cn/plugin?id=8559)
- cli 创建的 Vue3/Vite 项目 与 使用 HBuilderX 导入插件 的包有差异,请直接访问 [开源地址](https://gitee.com/h_mo/uniapp-vue3-vite-ts-template)
- 访问[uniapp 插件](https://ext.dcloud.net.cn/plugin?id=8559)
### 说明
- 框架完全基于Vue3 SFC `<script setup>` 写法,不支持Vue2;
- 框架完全基于 Vue3 SFC `<script setup>` 写法,不支持 Vue2;
- 可用于学习与交流;
- 目前测试H5、微信小程序,APP(Android),支付宝小程序通过;
- 目前测试 H5、微信小程序,APP(Android),支付宝小程序通过;
- 其他平台暂未测试,后续会增加;
- 如发现问题或建议可在评论区留言, 或提[Issues](https://gitee.com/h_mo/uniapp-vue3-vite-ts-template/issues)及[PR](https://gitee.com/h_mo/uniapp-vue3-vite-ts-template/pulls),会及时处理;
- 如有需求亦可在评论区留言,或在此项目基础上增加;
@ -28,11 +28,11 @@
## 特性
- **最新技术栈**:使用 Vue3/Vite4/pinia ,TypeScript 等前端前沿技术开发;
- **[Unocss](https://github.com/unocss/unocss)**: 原子化CSS, [iconify](https://github.com/iconify/iconify)图标
- **[Unocss](https://github.com/unocss/unocss)**: 原子化 CSS, [iconify](https://github.com/iconify/iconify)图标
- **Eslint/Prettier**: 规范代码格式,统一编码;
- **路由拦截**: 基于uni.addInterceptor进行路由拦截;
- **路由拦截**: 基于 uni.addInterceptor 进行路由拦截;
- **请求拦截**: 核心使用 [luch-request](https://ext.dcloud.net.cn/plugin?id=392),支持请求和响应拦截等;
- **缓存加密**: 使用AES加密缓存,可设置区分在开发或生成环境中是否加密;
- **缓存加密**: 使用 AES 加密缓存,可设置区分在开发或生成环境中是否加密;
## 目录结构
@ -111,21 +111,16 @@
```
## 预览
- H5
![h5](https://api-catch.ranesuangyu.top/images/20220621/364f2b47d91ae5ae82a33d33854e2540.png
)
![h5](https://api-catch.ranesuangyu.top/images/20220621/364f2b47d91ae5ae82a33d33854e2540.png)
- 小程序(体验版-需申请体验)
![小程序](http://api-catch.ranesuangyu.top/images/20220621/8d4388315ef5b8630d0c0b3963d1ba6b.jpg)
## 安装使用
- 安装依赖
@ -155,6 +150,7 @@ pnpm up
# 打开HBuilder X alpha桌面程序-->点击上面的帮助-->历次更新说明-->获取最新版本号3.7.2.20230217-alpha
npx @dcloudio/uvm 3.7.2.20230217-alpha
```
## Git 贡献提交规范
- 参考 [vue](https://github.com/vuejs/vue/blob/dev/.github/COMMIT_CONVENTION.md) 规范 ([Angular](https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-angular))

View File

@ -1,12 +1,9 @@
<!DOCTYPE html>
<html lang="en">
<html lang="zh">
<head>
<meta charset="UTF-8" />
<script>
var coverSupport =
'CSS' in window &&
typeof CSS.supports === 'function' &&
(CSS.supports('top: env(a)') || CSS.supports('top: constant(a)'));
var coverSupport = 'CSS' in window && typeof CSS.supports === 'function' && (CSS.supports('top: env(a)') || CSS.supports('top: constant(a)'));
document.write(
'<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0' +
(coverSupport ? ', viewport-fit=cover' : '') +
@ -17,6 +14,7 @@
<!--preload-links-->
<!--app-context-->
</head>
<body>
<div id="app"><!--app-html--></div>
<script type="module" src="/src/main.ts"></script>

View File

@ -31,7 +31,7 @@
"build:quickapp-webview-huawei": "uni build -p quickapp-webview-huawei",
"build:quickapp-webview-union": "uni build -p quickapp-webview-union",
"lint": "eslint --cache --max-warnings 0 \"src/**/*.{vue,ts}\" --fix",
"prettier": "prettier --write \"src/**/*.{js,ts,json,css,scss,vue}\"",
"format": "prettier --write src/",
"prepare": "husky install"
},
"dependencies": {
@ -87,9 +87,7 @@
"typescript": "^4.9.5",
"unocss": "^0.46.5",
"unocss-preset-weapp": "^0.2.5",
"unplugin-vue-components": "^0.22.12",
"vite": "^4.1.4",
"vite-plugin-eslint": "^1.8.1"
"vite": "^4.1.4"
},
"husky": {
"hooks": {

View File

@ -4,7 +4,7 @@
"path": "pages/index/index",
"style": {
"navigationBarTitleText": "首页",
"navigationStyle":"custom"
"navigationStyle": "custom"
},
"meta": {
"ignoreAuth": true
@ -53,9 +53,11 @@
}
}
],
"subPackages": [{
"subPackages": [
{
"root": "pagesA",
"pages": [{
"pages": [
{
"path": "list/test1/index",
"style": {
"navigationBarTitleText": "test1"
@ -63,19 +65,23 @@
"meta": {
"ignoreAuth": true
}
},{
},
{
"path": "list/test2/index",
"style": {
"navigationBarTitleText": "test2",
"navigationStyle":"custom"
"navigationStyle": "custom"
},
"meta": {
"ignoreAuth": true
}
}]
}, {
}
]
},
{
"root": "pagesB",
"pages": [{
"pages": [
{
"path": "detail/index",
"style": {
"navigationBarTitleText": "Detail"
@ -83,8 +89,10 @@
"meta": {
"ignoreAuth": true
}
}]
}],
}
]
}
],
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "uni-app",
@ -98,21 +106,25 @@
"color": "#474747",
"selectedColor": "#9BC6FC",
"backgroundColor": "#FFFFFF",
"list": [{
"list": [
{
"pagePath": "pages/index/index",
"text": "首页",
"iconPath": "static/images/tabBar/home.png",
"selectedIconPath": "static/images/tabBar/selectedHome.png"
},{
},
{
"pagePath": "pages/demo/index",
"text": "Demo",
"iconPath": "static/images/tabBar/demo.png",
"selectedIconPath": "static/images/tabBar/selectedDemo.png"
},{
},
{
"pagePath": "pages/about/index",
"text": "关于",
"iconPath": "static/images/tabBar/about.png",
"selectedIconPath": "static/images/tabBar/selectedAbout.png"
}]
}
]
}
}

View File

@ -1 +1,2 @@
import { request } from '@/utils/http';
// import { request } from '@/utils/http';
export {};

View File

@ -1,5 +1,5 @@
import { types } from 'sass';
import Boolean = types.Boolean;
// import { types } from 'sass';
// import Boolean = types.Boolean;
export interface Route extends Record<string, any> {
path: string;

View File

@ -40,7 +40,7 @@ request.interceptors.request.use(
}
return options;
},
(options) => Promise.reject(options)
(options) => Promise.reject(options),
);
/**
@ -59,7 +59,7 @@ request.interceptors.response.use(
(response) =>
// 请求错误做点什么。可以使用async await 做异步操作
// error('Request Error!');
Promise.reject(response)
Promise.reject(response),
);
export { request };

View File

@ -20,7 +20,7 @@ export function judgePlatform(target: PLATFORMS): boolean {
let isMpLark = false;
let isMpQq = false;
let isMpKuaishou = false;
let isMpJd = false;
// let isMpJd = false;
let isMp360 = false;
let isQuickAppWebView = false;
let isQuickAppWebViewUnion = false;
@ -32,111 +32,93 @@ export function judgePlatform(target: PLATFORMS): boolean {
isVue3 = true;
/* #endif */
return isVue3;
break;
case PLATFORMS.APP_PLUS:
/* #ifdef APP-PLUS */
isAppPlus = true;
/* #endif */
return isAppPlus;
break;
case PLATFORMS.APP_PLUS_NVUE:
/* #ifdef APP-PLUS-NVUE */
isAppPlusNvue = true;
/* #endif */
return isAppPlusNvue;
break;
case PLATFORMS.APP_NVUE:
/* #ifdef APP-NVUE */
isAppNvue = true;
/* #endif */
return isAppNvue;
break;
case PLATFORMS.H5:
/* #ifdef H5 */
isH5 = true;
/* #endif */
return isH5;
break;
case PLATFORMS.MP:
/* #ifdef MP */
isMp = true;
/* #endif */
return isMp;
break;
case PLATFORMS.MP_WEIXIN:
/* #ifdef MP-WEIXIN */
isMpWeinxin = true;
/* #endif */
return isMpWeinxin;
break;
case PLATFORMS.MP_ALIPAY:
/* #ifdef MP-ALIPAY */
isMpAlipay = true;
/* #endif */
return isMpAlipay;
break;
case PLATFORMS.MP_BAIDU:
/* #ifdef MP_BAIDU */
isMpBaidu = true;
/* #endif */
return isMpBaidu;
break;
case PLATFORMS.MP_TOUTIAO:
/* #ifdef MP-TOUTIAO */
isMpToutiao = true;
/* #endif */
return isMpToutiao;
break;
case PLATFORMS.MP_LARK:
/* #ifdef MP-LARK */
isMpLark = true;
/* #endif */
return isMpLark;
break;
case PLATFORMS.MP_QQ:
/* #ifdef MP-QQ */
isMpQq = true;
/* #endif */
return isMpQq;
break;
case PLATFORMS.MP_KUAISHOU:
/* #ifdef MP-KUAISHOU */
isMpKuaishou = true;
/* #endif */
return isMpKuaishou;
break;
case PLATFORMS.MP_JD:
/* #ifdef MP-JD */
isMpJd = true;
/* #endif */
return (isMpJd = true);
break;
// case PLATFORMS.MP_JD:
// /* #ifdef MP-JD */
// isMpJd = true;
// /* #endif */
// return (isMpJd = true);
// break;
case PLATFORMS.MP_360:
/* #ifdef MP-360 */
isMp360 = true;
/* #endif */
return isMp360;
break;
case PLATFORMS.QUICKAPP_WEBVIEW:
/* #ifdef QUICKAPP-WEBVIEW */
isQuickAppWebView = true;
/* #endif */
return isQuickAppWebView;
break;
case PLATFORMS.QUICKAPP_WEBVIEW_UNION:
/* #ifdef QUICKAPP-WEBVIEW-UNION */
isQuickAppWebViewUnion = true;
/* #endif */
return isQuickAppWebViewUnion;
break;
case PLATFORMS.QUICKAPP_WEBVIEW_HUAWEI:
/* #ifdef QUICKAPP-WEBVIEW-HUAWEI */
isQuickAppWebViewHuawei = true;
/* #endif */
return isQuickAppWebViewHuawei;
break;
default:
return false;
}
return false;
}

View File

@ -1,54 +1,25 @@
{
/* */
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"], //
"exclude": [], //
//使 ** *
/* */
"compilerOptions": {
"target": "esnext", //
"useDefineForClassFields": true, //ecmascript
"module": "esnext", //
"moduleResolution": "node", //TypeScript
"jsx": "preserve", //JSX
"sourceMap": true, //JavaScript
"esModuleInterop": true, // export=import from
"lib": ["esnext", "dom"], // TS
"types": ["@dcloudio/types"],
// "allowJs": true, // JSJSX
// "checkJs": false, // JSallowJS使
"removeComments": true, //
"paths": {
"@/*": ["./src/*"]
}, //
/* */
"target": "ESNext", //
"useDefineForClassFields": true, //ECMAScript
"module": "ESNext", //
"moduleResolution": "Node", //TypeScript
"strict": true, //
"alwaysStrict": true, // 'use strict'
"noImplicitAny": true, // any
"noImplicitThis": true, // thisany
"strictNullChecks": true, // nullundefined
"strictBindCallApply": true, // bindcallapply
"strictFunctionTypes": true, //
"strictPropertyInitialization": true, //
/* */
"noUnusedLocals": true, //使
"noUnusedParameters": true, //使
"noImplicitReturns": true, //
"noImplicitOverride": true, //
"noFallthroughCasesInSwitch": true, //switchcase使break
"noUncheckedIndexedAccess": true, //
"noPropertyAccessFromIndexSignature": false, //" . “(obj.key) 语法访问字段和"( obj[key])
/* */
"experimentalDecorators": true, // JavaScript
"emitDecoratorMetadata": true, //
/* */
"forceConsistentCasingInFileNames": true, //
"extendedDiagnostics": false, // TS
"jsx": "preserve", //JSX
"resolveJsonModule": true, // JSON
"isolatedModules": true, //
"esModuleInterop": true, // JavaScriptCommon/S使allowsyntheticdefaulultimports
"removeComments": true, //
"types": ["@dcloudio/types"],
"paths": { "@/*": ["./src/*"] }, //
"lib": ["ESNext", "DOM"], // TS
"skipLibCheck": true, // .d.ts
"noEmit": true, //
"noEmitOnError": true, //
"resolveJsonModule": true // JSON
}
"forceConsistentCasingInFileNames": true, //
"experimentalDecorators": true, // JavaScript
"emitDecoratorMetadata": true //
},
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"],
"references": [{ "path": "./tsconfig.node.json" }] // TypeScript 3.0
}

9
tsconfig.node.json Normal file
View File

@ -0,0 +1,9 @@
{
"compilerOptions": {
"composite": true,
"module": "ESNext",
"moduleResolution": "Node",
"allowSyntheticDefaultImports": true
},
"include": ["vite.config.*", "vitest.config.*", "cypress.config.*", "playwright.config.*"]
}

View File

@ -6,10 +6,7 @@
import { defineConfig, presetIcons } from 'unocss';
import presetWeapp from 'unocss-preset-weapp';
import {
transformerAttributify,
transformerClass,
} from 'unocss-preset-weapp/transformer';
import { transformerAttributify, transformerClass } from 'unocss-preset-weapp/transformer';
const transformRules = {
'.': '-d111-',

View File

@ -1,67 +1,26 @@
import { ConfigEnv, UserConfig } from 'vite';
import uni from '@dcloudio/vite-plugin-uni';
import eslintPlugin from 'vite-plugin-eslint';
// Vite中文网https://vitejs.cn/config/
import { ConfigEnv, loadEnv, UserConfig } from 'vite';
import { resolve } from 'path';
import { loadEnv } from 'vite';
import uni from '@dcloudio/vite-plugin-uni';
import Unocss from 'unocss/vite';
//发布时动态修改 manifest.json
// if (process.env.NODE_ENV === 'production') {
// // 读取 manifest.json ,修改后重新写入
// const fs = require('fs');
// const manifestPath = './src/manifest.json';
// let Manifest = fs.readFileSync(manifestPath, { encoding: 'utf-8' });
// function replaceManifest(path: string, value: any) {
// const arr = path.split('.');
// const len = arr.length;
// const lastItem = arr[len - 1];
// let i = 0;
// let ManifestArr = Manifest.split(/\n/);
// for (let index = 0; index < ManifestArr.length; index++) {
// const item = ManifestArr[index];
// if (new RegExp(`"${arr[i]}"`).test(item)) ++i;
// if (i === len) {
// const hasComma = /,/.test(item);
// ManifestArr[index] = item.replace(new RegExp(`"${lastItem}"[\\s\\S]*:[\\s\\S]*`), `"${lastItem}": ${value}${hasComma ? ',' : ''}`);
// break;
// }
// }
// Manifest = ManifestArr.join('\n');
// }
// let Data1 = new Date().toLocaleDateString();
// let Data2 = new Date().toLocaleTimeString();
// let Data_ = Data1.replace(/\//g, '-') + ' ' + Data2;
// // 使用
// replaceManifest('description', JSON.stringify(`app平台-${Data_}`));
// replaceManifest(
// 'versionName',
// JSON.stringify(
// String(Number(JSON.parse(Manifest).versionCode) + 1)
// .split('')
// .join('.')
// )
// );
// replaceManifest('versionCode', JSON.stringify(String(Number(JSON.parse(Manifest).versionCode) + 1)));
// fs.writeFileSync(manifestPath, Manifest, { flag: 'w' });
// }
// https://vitejs.cn/config/
export default ({ mode }: ConfigEnv): UserConfig => {
const root = process.cwd();
const env = loadEnv(mode, root);
return {
base: './',
// 设置路径别名
resolve: {
alias: {
'@': resolve('./src'),
},
extensions: ['.js', '.json', '.ts', '.vue'], // 使用路径别名时想要省略的后缀名,可以自己 增减
},
// 自定义全局变量
define: {
'process.env': {},
},
// 开发服务器配置
server: {
host: true,
// open: true,
@ -79,21 +38,24 @@ export default ({ mode }: ConfigEnv): UserConfig => {
},
},
},
plugins: [
uni(),
Unocss(),
// eslintPlugin({
// include: ['src/**/*.js', 'src/**/*.vue', 'src/**/*.ts'],
// exclude: ['./node_modules/**'],
// cache: false,
// }),
],
css: {
preprocessorOptions: {
scss: {
// additionalData: '@import "@/assets/style/main.scss";',
// 构建配置
build: {
outDir: 'dist',
chunkSizeWarningLimit: 1500,
rollupOptions: {
output: {
entryFileNames: `assets/[name].${new Date().getTime()}.js`,
chunkFileNames: `assets/[name].${new Date().getTime()}.js`,
assetFileNames: `assets/[name].${new Date().getTime()}.[ext]`,
compact: true,
// manualChunks: {
// vue: ['vue', 'vue-router', 'vuex'],
// echarts: ['echarts'],
// },
},
},
},
// 插件
plugins: [uni(), Unocss()],
};
};