File size: 548 Bytes
bdd8da5
fb675fc
bdd8da5
 
 
 
 
 
 
fb675fc
bdd8da5
 
 
86456b4
bdd8da5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/env node

/**
 * Retired legacy workbook entry point.
 *
 * It intentionally fails before reading inputs or writing files. The old
 * implementation emitted a v0.2.0 workbook and relied on an undeclared
 * external runtime, so delegating would silently publish the wrong release.
 */

process.stderr.write(
  "ERROR: scripts/build-workbook.mjs is retired and produced obsolete v0.2.0 output. " +
  "No public, pinned v0.4 workbook build is available; use the frozen workbook checksum in the release manifest.\n"
);
process.exitCode = 2;