@norskvideo/ctl-dev-kit 0.1.73 → 0.1.74
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.
|
@@ -104,7 +104,14 @@ jobs:
|
|
|
104
104
|
run: |
|
|
105
105
|
nix develop .#build --command bash -c '
|
|
106
106
|
set -euo pipefail
|
|
107
|
-
|
|
107
|
+
# Per INSTALL ROOT, not per repo. The rewrite above walks every
|
|
108
|
+
# tracked package.json, and a manifest outside the root workspace
|
|
109
|
+
# list (funke proxy/ui) owns its own lockfile that a root-only
|
|
110
|
+
# install never regenerates -- leaving a bumped pin its own
|
|
111
|
+
# --frozen-lockfile then rejects.
|
|
112
|
+
for lock in $(git ls-files "*bun.lock"); do
|
|
113
|
+
(cd "$(dirname "$lock")" && bun install)
|
|
114
|
+
done
|
|
108
115
|
bun run check:drift
|
|
109
116
|
bun run lint
|
|
110
117
|
bun run typecheck
|
|
@@ -191,7 +191,16 @@ jobs:
|
|
|
191
191
|
|
|
192
192
|
- name: Refresh the lockfile against the new pins
|
|
193
193
|
if: steps.bump.outputs.changed == '1'
|
|
194
|
-
|
|
194
|
+
# Per INSTALL ROOT: the rewrites above walk every tracked package.json,
|
|
195
|
+
# and a manifest outside the root workspace list owns a lockfile a
|
|
196
|
+
# root-only install never regenerates. See lockfile-reinstall.test.ts.
|
|
197
|
+
run: |
|
|
198
|
+
nix develop .#build --command bash -c '
|
|
199
|
+
set -euo pipefail
|
|
200
|
+
for lock in $(git ls-files "*bun.lock"); do
|
|
201
|
+
(cd "$(dirname "$lock")" && bun install)
|
|
202
|
+
done
|
|
203
|
+
'
|
|
195
204
|
|
|
196
205
|
- name: Commit the bump to main
|
|
197
206
|
if: steps.bump.outputs.changed == '1'
|