Configuring pnpm
Point pnpm at the Seal Artifact Server using a per-project .npmrc.
Configuration
registry=https://npm.sealsecurity.io/
//npm.sealsecurity.io/:username=<project-id>
//npm.sealsecurity.io/:_password=<token-base64>
//npm.sealsecurity.io/:always-auth=trueecho -n "$SEAL_TOKEN" | base64 # macOS
echo -n "$SEAL_TOKEN" | base64 -w0 # LinuxVerify
pnpm config get registryRelated
Last updated