feat(ql3): add read-only cluster copilot console

This commit is contained in:
whyour
2026-08-16 04:35:28 +08:00
parent da4e7cf688
commit c4a1238a92
32 changed files with 3407 additions and 20 deletions
+3
View File
@@ -3101,6 +3101,9 @@ function auditPackageScripts(packagePath, manifest, findings) {
function auditPackageFiles(packagePath, manifest, findings) {
const expected = ['dist/**/*.js', 'dist/**/*.d.ts'];
if (packagePath === 'packages/ql3-cluster-admin') {
expected.push('assets/copilot-console/*');
}
if (packagePath === 'packages/ql3-local-process') expected.push('assets');
if (packagePath === 'packages/ql3-local-sqlite') expected.push('drizzle');
if (JSON.stringify(manifest.files) !== JSON.stringify(expected)) {