.npmrc.example 649 B

12345678910
  1. ; Template for .npmrc (which is GITIGNORED — never commit the real one).
  2. ; Copy to .npmrc, then keep the token in a gitignored .env file:
  3. ; echo 'FONTAWESOME_NPM_TOKEN=your-fa-pro-token' > .env
  4. ; The ${FONTAWESOME_NPM_TOKEN} ref below reads it. `npm run kit:update` loads
  5. ; .env before pulling the kit; for other npm commands, `set -a; . ./.env; set +a`
  6. ; first, or export it in your shell. (Or paste the raw token after `_authToken=`
  7. ; — it stays local since .npmrc is gitignored.)
  8. @awesome.me:registry=https://npm.fontawesome.com/
  9. @fortawesome:registry=https://npm.fontawesome.com/
  10. //npm.fontawesome.com/:_authToken=${FONTAWESOME_NPM_TOKEN}