Compare commits

..

2 Commits

Author SHA1 Message Date
严浩
44d5209e89 build: 移除 package.json 中的 packageManager 字段 2025-09-09 22:57:40 +08:00
严浩
89532cc9b7 build(deps): 使用 rolldown-vite 包 2025-09-09 22:57:40 +08:00
7 changed files with 255 additions and 262 deletions

2
.env
View File

@@ -1,4 +1,2 @@
VITE_BASE=/
VITE_BUILD_SOURCE_MAP=true
VITE_BUILD_COMMIT=
VITE_BUILD_TIME=

View File

@@ -28,9 +28,6 @@ jobs:
env:
VITE_BUILD_COMMIT: ${{ github.sha }}
- name: 🧪 单元测试
run: pnpm run test:unit
- name: 📊 计算构建大小
run: |
echo "📊 构建大小统计:"

View File

@@ -18,8 +18,6 @@ jobs:
uses: yanhao98/composite-actions/setup-node-environment@25eb4dc0c134cc9df2b7c569aa54140a366b45a8
# - name: 📥 安装 Playwright 浏览器
# run: pnpm exec playwright install --with-deps
- name: 🔄 更新依赖
run: pnpm update --latest
- name: 📦 构建项目
run: pnpm run build-only
- name: ▶️ 运行 Playwright 测试

View File

@@ -1,5 +1,4 @@
{
"packageManager": "pnpm@10.15.1",
"name": "vue-ts-example-2025",
"version": "0.0.0",
"private": true,
@@ -57,7 +56,7 @@
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@formkit/auto-animate": "^0.9.0",
"@pinia/colada": "^0.17.4",
"@pinia/colada": "^0.17.3",
"@primeuix/themes": "^1.2.3",
"@unhead/vue": "^2.0.14",
"@vueuse/core": "^13.9.0",
@@ -101,6 +100,7 @@
"nprogress": "^0.2.0",
"oxlint": "~1.14.0",
"prettier": "3.6.2",
"rolldown": "1.0.0-beta.36",
"typescript": "~5.9.2",
"unocss": "^66.5.1",
"unocss-preset-animations": "^1.2.1",
@@ -109,7 +109,7 @@
"unplugin-vue-components": "^29.0.0",
"unplugin-vue-markdown": "^29.1.0",
"unplugin-vue-router": "^0.15.0",
"vite": "npm:rolldown-vite@^7.1.9",
"vite": "npm:rolldown-vite@^7.1.8",
"vite-plugin-checker": "^0.10.3",
"vite-plugin-fake-server": "^2.2.0",
"vite-plugin-image-optimizer": "^2.0.2",

View File

@@ -2,7 +2,7 @@ import { defineConfig, devices } from '@playwright/test'
import process from 'node:process'
// const runningInVSCode = process.env.TERM_PROGRAM === 'vscode'
const baseURL = 'http://localhost:4173'
const baseURL = process.env.CI ? 'http://localhost:4173' : 'http://localhost:4730'
/**
* Read environment variables from file.
@@ -106,8 +106,8 @@ export default defineConfig({
* Use the preview server on CI for more realistic testing.
* Playwright will re-use the local server if there is already a dev-server running.
*/
command: 'pnpm run build-only; pnpm run preview',
command: process.env.CI ? 'pnpm run preview' : 'pnpm run dev',
port: Number(new URL(baseURL).port),
reuseExistingServer: true /* !process.env.CI */,
reuseExistingServer: !process.env.CI,
},
})

485
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,19 +1,18 @@
import { fileURLToPath, URL } from 'node:url'
import { createViteProxy } from 'utils4u/vite'
import { defineConfig, loadEnv, type DepOptimizationOptions } from 'vite'
import { defineConfig, type DepOptimizationOptions } from 'vite'
import { Plugins } from './vite.config.plugins'
// import { createRolldownSplitChunks } from './vite.config.rolldown.split-chunks'
// https://vite.dev/config/
export default defineConfig(({ command, mode }) => {
export default defineConfig(({ command /* mode */ }) => {
const isBuild = command === 'build'
const env = loadEnv(mode, process.cwd())
// const env = loadEnv(mode, process.cwd())
return {
base: env.VITE_BASE,
build: {
sourcemap: env.VITE_BUILD_SOURCE_MAP === 'true',
},
// build: createRolldownSplitChunks(),
// base: env.VITE_BASE,
plugins: Plugins(),
resolve: {
alias: {