Last active
March 26, 2025 16:15
-
-
Save adcreare/00a10f389841dd4c97197608c9b33a7f to your computer and use it in GitHub Desktop.
Revisions
-
adcreare revised this gist
Jul 26, 2019 . 1 changed file with 3 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,12 +1,12 @@ Steps to publish a npm package to beta that won't be available via latest and won't auto install on ncu updates etc 1. Ensure any compile is run `npm run dist` etc 2. Modify version in package.json to the following format (match with existing verion numbers etc) `"version": "0.1.120-beta.1"` where beta.x is the number of those betas 3. Publish to npm `npm publish --tag beta` There are two options for install: * Always install beta with `npm install packagename@beta` * Install specific version with `npm install [email protected]` How to fix latest if you publish a beta without --tag beta (if will default to latest) run: `npm dist-tags add @COMPANY/[email protected] latest --otp=123456`where 1.0.3 is the version that should be latest --otp= is required -
adcreare revised this gist
May 20, 2018 . 1 changed file with 4 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -6,4 +6,7 @@ Steps to publish a npm package to beta that won't be available via latest and wo There are two options for install: * Always install beta with `yarn add packagename@beta` * Install specific version with `yarn add [email protected]` How to fix latest if you publish a beta without --tag beta (if will default to latest) run: `npm dist-tags add @COMPANY/[email protected] latest --otp=123456`where 1.0.3 is the version that should be latest --otp= is required -
adcreare created this gist
Mar 28, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ Steps to publish a npm package to beta that won't be available via latest and won't auto install on ncu updates etc 1. Ensure any compile is run `yarn dist` etc 2. Modify version in package.json to the following format (match with existing verion numbers etc) `"version": "0.1.120-beta.1"` where beta.x is the number of those betas 3. Publish to npm `npm publish --tag beta` There are two options for install: * Always install beta with `yarn add packagename@beta` * Install specific version with `yarn add [email protected]`