[refactor] moving cubes into own package"
Publish snapshot / snapshot (push) Successful in 1m2s

[fix] default parameter run records parameters in session for replay[fix] remove default parameters for several cubes
This commit is contained in:
Benjamin Diedrichsen
2026-07-28 12:18:10 +02:00
parent ac050c4459
commit 6ecb2c366f
130 changed files with 3386 additions and 520 deletions
+51
View File
@@ -0,0 +1,51 @@
#!/usr/bin/env node
/**
* Prints the workspace packages a package links to, as `<name> <version>` lines.
*
* The version is the one the linked package declares *right now*, which is
* exactly what `pnpm publish` will substitute for `workspace:*` when it packs.
* A release can therefore check that each of them is already on the registry
* before shipping a manifest that points at a version nobody can install.
*
* node scripts/linked-deps.mjs packages/nopy
*/
import fs from 'node:fs';
import path from 'node:path';
const PACKAGES_DIR = 'packages';
const RANGE_FIELDS = ['dependencies', 'peerDependencies', 'optionalDependencies'];
const target = process.argv[2];
if (!target) {
console.error('Usage: node scripts/linked-deps.mjs <package-dir>');
process.exit(2);
}
const read = (dir) => JSON.parse(fs.readFileSync(path.join(dir, 'package.json'), 'utf-8'));
// Resolved by name rather than by directory: nothing guarantees that
// `@bitsquare/nopy-cube` lives in `packages/nopy-cube`.
const versionByName = new Map(
fs
.readdirSync(PACKAGES_DIR)
.map((name) => path.join(PACKAGES_DIR, name))
.filter((dir) => fs.existsSync(path.join(dir, 'package.json')))
.map((dir) => read(dir))
.map((manifest) => [manifest.name, manifest.version])
);
const manifest = read(target);
const linked = RANGE_FIELDS.flatMap((field) => Object.entries(manifest[field] ?? {}))
.filter(([, range]) => range.startsWith('workspace:'))
.map(([name]) => name);
for (const name of linked) {
const version = versionByName.get(name);
if (version === undefined) {
console.error(`${manifest.name} links to ${name}, which is not in ${PACKAGES_DIR}/.`);
process.exit(1);
}
console.log(`${name} ${version}`);
}