Merge pull request 'fix: Dual package managers: both package-lock.json and yarn.lock tracked (#343)' (#366) from fix/issue-343 into master
This commit is contained in:
commit
b41dbddafe
3 changed files with 13 additions and 4594 deletions
|
|
@ -56,6 +56,18 @@ steps:
|
|||
# NOTE: contracts-base-sepolia step removed — requires base_sepolia_rpc secret
|
||||
# which is not configured. Re-add when RPC secret is provisioned.
|
||||
|
||||
- name: single-package-manager
|
||||
image: registry.niovi.voyage/harb/node-ci:latest
|
||||
commands:
|
||||
- |
|
||||
bash -c '
|
||||
set -euo pipefail
|
||||
if [ -f kraiken-lib/yarn.lock ]; then
|
||||
echo "ERROR: kraiken-lib/yarn.lock must not be committed. Use npm only (see packageManager field in kraiken-lib/package.json)." >&2
|
||||
exit 1
|
||||
fi
|
||||
'
|
||||
|
||||
- name: node-quality
|
||||
image: registry.niovi.voyage/harb/node-ci:latest
|
||||
environment:
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@
|
|||
"name": "kraiken-lib",
|
||||
"version": "1.0.0",
|
||||
"description": "helper functions and snatch selection",
|
||||
"packageManager": "npm@11.6.1",
|
||||
"type": "module",
|
||||
"main": "dist/index.js",
|
||||
"types": "dist/index.d.ts",
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue