@norskvideo/ctl-dev-kit 0.1.21 → 0.1.22
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.
- package/conventions/checks.yml +12 -0
- package/package.json +1 -1
package/conventions/checks.yml
CHANGED
|
@@ -40,6 +40,12 @@ jobs:
|
|
|
40
40
|
run: |
|
|
41
41
|
nix develop .#build --command bash -c '
|
|
42
42
|
set -euo pipefail
|
|
43
|
+
# clean:false persists node_modules between runs, and a frozen install
|
|
44
|
+
# will NOT relink a dep/workspace whose pinned version moved -- e.g. a
|
|
45
|
+
# dev-kit bump leaves a stale node_modules/@norskvideo/ctl-dev-kit, so
|
|
46
|
+
# check:drift would run the OLD checker against the new canonical. Nuke
|
|
47
|
+
# every node_modules first so the pinned versions are what actually run.
|
|
48
|
+
find . -name node_modules -type d -prune -exec rm -rf {} + 2>/dev/null || true
|
|
43
49
|
bun install --frozen-lockfile
|
|
44
50
|
bun run check:drift
|
|
45
51
|
'
|
|
@@ -58,6 +64,12 @@ jobs:
|
|
|
58
64
|
run: |
|
|
59
65
|
nix develop .#build --command bash -c '
|
|
60
66
|
set -euo pipefail
|
|
67
|
+
# clean:false persists node_modules between runs, and a frozen install
|
|
68
|
+
# will NOT relink a dep/workspace whose pinned version moved -- e.g. a
|
|
69
|
+
# dev-kit bump leaves a stale node_modules/@norskvideo/ctl-dev-kit, so
|
|
70
|
+
# check:drift would run the OLD checker against the new canonical. Nuke
|
|
71
|
+
# every node_modules first so the pinned versions are what actually run.
|
|
72
|
+
find . -name node_modules -type d -prune -exec rm -rf {} + 2>/dev/null || true
|
|
61
73
|
bun install --frozen-lockfile
|
|
62
74
|
bun run lint
|
|
63
75
|
bun run typecheck
|