chore: import upstream snapshot with attribution
CI / lint (push) Failing after 1s
CI / typecheck (push) Failing after 2s
CI / build (push) Has been skipped
CI / test (push) Failing after 1s

This commit is contained in:
wehub-resource-sync
2026-07-13 12:22:56 +08:00
commit 2771cff92b
750 changed files with 214822 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
#!/usr/bin/env node
const fs = require('fs');
const path = require('path');
const packagePath = path.join(__dirname, '..', 'package.json');
const manifestPath = path.join(__dirname, '..', 'manifest.json');
const packageJson = JSON.parse(fs.readFileSync(packagePath, 'utf8'));
const manifestJson = JSON.parse(fs.readFileSync(manifestPath, 'utf8'));
manifestJson.version = packageJson.version;
fs.writeFileSync(manifestPath, JSON.stringify(manifestJson, null, 2) + '\n');
console.log(`Synced version to ${packageJson.version}`);