forked from finos/architecture-as-code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.npmrc
More file actions
14 lines (13 loc) · 632 Bytes
/
.npmrc
File metadata and controls
14 lines (13 loc) · 632 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Enforce the engines range from package.json.
# Blocks unsupported versions (e.g. Node 18, 20, 23) but still allows
# Node 24+ since engines includes ">=24.10.0" for local development.
engine-strict=true
# Ensure npm resolves optional native bindings for all CI platforms,
# not just the current developer machine. Prevents missing-binding
# errors (e.g. @tailwindcss/oxide) when the lockfile is regenerated
# on macOS but consumed on Linux runners.
supportedArchitectures[os][]=current
supportedArchitectures[os][]=linux
supportedArchitectures[cpu][]=current
supportedArchitectures[cpu][]=x64
supportedArchitectures[cpu][]=arm64