Files
QZMusic_PC/amll-local/nx.json
lqtmcstudio 72f4510dc8 fork(fix): Clone AMLL 并修复 BUG
- 将AMLL Clone到本以地进行修复和优化(emm虽然这很不优雅但是暂时无时间做子模块和Fork)
- 修复在当前播放歌词行不可见的视口Seek会出现滚动偏移的问题
2026-06-07 00:02:14 +08:00

105 lines
2.1 KiB
JSON

{
"tasksRunnerOptions": {
"default": {
"runner": "nx/tasks-runners/default",
"options": {
"cacheableOperations": ["build:dev", "build"]
}
}
},
"targetDefaults": {
"fmt": {
"cache": true,
"outputs": ["{projectRoot}/src"]
},
"build": {
"cache": true,
"dependsOn": ["^build"],
"maxParallel": 1,
"outputs": ["{projectRoot}/dist", "{projectRoot}/pkg"]
},
"build:dev": {
"cache": true,
"dependsOn": ["^build:dev"],
"maxParallel": 1,
"outputs": ["{projectRoot}/dist", "{projectRoot}/pkg"]
}
},
"analytics": false,
"release": {
"versionPlans": {
"ignorePatternsForPlanCheck": [
"**/*.md",
"**/*.mdx",
".github/**",
".nx/**",
".editorconfig",
".gitignore",
".gitattributes",
"biome.json",
"Cargo.lock",
"Cargo.toml",
"lerna.json",
"LICENSE",
"nx.json",
"package.json",
"pnpm-lock.yaml",
"bun.lock",
"pnpm-workspace.yaml",
"tsconfig.json",
"tsconfig.base.json",
"packages/docs/**",
"packages/*/docs/**",
"packages/playground/**",
"packages/fft",
"packages/ws-protocol",
"patches/**",
"**/test/**",
"**/tests/**",
"**/tsconfig*",
"**/tsdown*"
]
},
"version": {
"conventionalCommits": false,
"preVersionCommand": "pnpm run build:libs"
},
"changelog": {
"workspaceChangelog": false,
"projectChangelogs": {
"renderer": "{workspaceRoot}/.nx/scripts/changelog-render.ts"
}
},
"git": {
"commit": true,
"tag": true
},
"releaseTag": {
"pattern": "{projectName}@{version}",
"requireSemver": true
},
"groups": {
"core-bundle": {
"projects": [
"@applemusic-like-lyrics/core",
"@applemusic-like-lyrics/react",
"@applemusic-like-lyrics/vue"
],
"projectsRelationship": "fixed",
"releaseTag": {
"pattern": "core-bundle@{version}",
"requireSemver": true
}
},
"libraries": {
"projects": [
"@applemusic-like-lyrics/lyric",
"@applemusic-like-lyrics/react-full",
"@applemusic-like-lyrics/ttml"
],
"projectsRelationship": "independent"
}
}
}
}