Skip to content

Commit

Permalink
chore(package): set private=true to avoid publishing from main direct…
Browse files Browse the repository at this point in the history
…ory, add prepare script and RC tag
  • Loading branch information
DanielKucal committed Feb 17, 2018
1 parent bb1344d commit 5def7e7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "ngx-store",
"version": "1.3.5",
"private": true,
"version": "1.4.0-RC0",
"description": "Angular decorators to automagically keep variables in HTML5 LocalStorage, SessionStorage, cookies; injectable services for managing and listening to data changes and a bit more.",
"main": "./ngx-store.js",
"main for angular5": "./bundles/ngx-store.umd.js",
Expand All @@ -11,7 +12,8 @@
"lint": "tslint ./*.ts -t verbose",
"test": "karma start",
"pack-lib": "npm pack ./dist",
"publish-lib": "npm publish ./dist",
"prepare": "npm run build",
"publish-lib": "npm publish --tag RC ./dist",
"publish-lib:next": "npm publish --tag next ./dist",
"compodoc": "compodoc -p tsconfig.json",
"compodoc-serve": "compodoc -s"
Expand Down

0 comments on commit 5def7e7

Please sign in to comment.