@norskvideo/ctl-dev-kit 0.1.86 → 0.1.87

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/build/flake.nix +9 -0
  2. package/package.json +1 -1
package/build/flake.nix CHANGED
@@ -87,6 +87,15 @@
87
87
  buildTools = [
88
88
  biome
89
89
  pkgs.bun
90
+ pkgs.nodejs # @biomejs/biome's bin is a JS wrapper, not the binary —
91
+ # it is what reads BIOME_BINARY below and execs the nix
92
+ # build. Something has to *parse* that wrapper first, so a
93
+ # modern node has to be on PATH or the host's is used: on
94
+ # an older distro node (Ubuntu noble ships v12) `bun run
95
+ # lint` dies on the wrapper's optional chaining before
96
+ # biome ever starts. norsk-ctl carries nodejs for kubb and
97
+ # so never hit this; the split-out products had nothing
98
+ # putting node in the shell.
90
99
  pkgs.cargo # builds the native product-signer addon (probe/native)
91
100
  pkgs.rustc
92
101
  pkgs.git
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@norskvideo/ctl-dev-kit",
3
- "version": "0.1.86",
3
+ "version": "0.1.87",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  "./create-product": "./create-product/create-product.ts",