Skip to content

Commit

Permalink
Merge pull request #216 from baptistechardon/fix_missing_license_readme
Browse files Browse the repository at this point in the history
build: add license and readme to built library
  • Loading branch information
BBlackwo authored Mar 30, 2022
2 parents 85a0ad1 + aa5577c commit e74c9df
Show file tree
Hide file tree
Showing 4 changed files with 127 additions and 25 deletions.
103 changes: 101 additions & 2 deletions package-lock.json

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

29 changes: 7 additions & 22 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,33 +1,17 @@
{
"name": "ngrx-store-localstorage",
"version": "13.0.0",
"description": "State and local storage syncing for @ngrx/store",
"name": "ngrx-store-localstorage-root",
"version": "0.0.0",
"private": "true",
"scripts": {
"build_dist": "npm run clean && ng build lib --configuration production",
"build_dist": "npm run clean && ng build lib --configuration production && npm run copy_lib_assets",
"clean": "rimraf dist",
"lint": "ng lint --fix",
"ng": "ng",
"pretest": "npm run lint",
"test": "nyc ts-node -O '{\"module\": \"commonjs\"}' node_modules/jasmine/bin/jasmine",
"prepare": "husky install"
"prepare": "husky install",
"copy_lib_assets": "copyfiles README.md CHANGELOG.md LICENSE ./dist/lib/"
},
"repository": {
"type": "git",
"url": "[email protected]:btroncone/ngrx-store-localstorage.git"
},
"keywords": [
"redux",
"ngrx",
"store",
"localstorage",
"rxjs"
],
"author": "Brian Troncone",
"license": "MIT",
"bugs": {
"url": "https://github.com/btroncone/ngrx-store-localstorage/issues"
},
"homepage": "https://github.com/btroncone/ngrx-store-localstorage#readme",
"dependencies": {
"@angular/animations": "~13.0.0",
"@angular/common": "~13.0.0",
Expand Down Expand Up @@ -59,6 +43,7 @@
"@types/node": "^14.17.0",
"@typescript-eslint/eslint-plugin": "5.3.0",
"@typescript-eslint/parser": "5.3.0",
"copyfiles": "^2.4.1",
"crypto-js": "^4.0.0",
"es6-shim": "^0.35.6",
"eslint": "^8.2.0",
Expand Down
2 changes: 1 addition & 1 deletion projects/lib/ng-package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
"allowedNonPeerDependencies": [
"deepmerge"
]
}
}
18 changes: 18 additions & 0 deletions projects/lib/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,24 @@
{
"name": "ngrx-store-localstorage",
"version": "13.0.0",
"description": "State and local storage syncing for @ngrx/store",
"repository": {
"type": "git",
"url": "[email protected]:btroncone/ngrx-store-localstorage.git"
},
"keywords": [
"redux",
"ngrx",
"store",
"localstorage",
"rxjs"
],
"author": "Brian Troncone",
"bugs": {
"url": "https://github.com/btroncone/ngrx-store-localstorage/issues"
},
"homepage": "https://github.com/btroncone/ngrx-store-localstorage#readme",
"license": "MIT",
"peerDependencies": {
"@angular/common": "^13.0.0",
"@angular/core": "^13.0.0",
Expand Down

0 comments on commit e74c9df

Please sign in to comment.