Skip to content

Commit

Permalink
fix: ensure public package access
Browse files Browse the repository at this point in the history
  • Loading branch information
twittwer committed Oct 31, 2021
1 parent 1483631 commit ce69c71
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 6 deletions.
22 changes: 18 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
{
"name": "nx-tools",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"prepare": "husky install",
"cz": "cz",
"commit": "cz",
"local-registry": "./scripts/local-registry.sh",
"local-registry:run": "npm run local-registry run"
},
"private": true,
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
Expand Down Expand Up @@ -46,5 +43,22 @@
"ts-jest": "27.0.7",
"typescript": "4.4.4",
"verdaccio": "5.2.0"
}
},
"version": "0.0.0",
"private": false,
"license": "MIT",
"author": "Tobias Wittwer <t.wittwer95@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/twittwer/nx-tools.git"
},
"homepage": "https://github.com/twittwer/nx-tools#readme",
"bugs": {
"url": "https://github.com/twittwer/nx-tools/issues"
},
"keywords": [
"nx-plugin",
"compodoc",
"documentation"
]
}
4 changes: 2 additions & 2 deletions packages/compodoc/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -84,15 +84,15 @@
"npm run local-registry enable",
"nx run compodoc:version:local",
"nx run compodoc:build",
"npm publish dist/packages/compodoc --access public"
"npm publish dist/packages/compodoc --access public --tag latest"
]
},
"remote": {
"commands": [
"npm run local-registry disable",
"nx run compodoc:version:remote",
"nx run compodoc:build",
"npm publish dist/packages/compodoc --access public"
"npm publish dist/packages/compodoc --access public --tag latest"
]
}
}
Expand Down

0 comments on commit ce69c71

Please sign in to comment.