Skip to content

Commit

Permalink
fix: npm publish
Browse files Browse the repository at this point in the history
For unknown reasons, npm publish can't handle the path.
Fix this by changing directory.
  • Loading branch information
davidwalschots committed May 13, 2022
1 parent ed81b0b commit 44abdf6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"e2e": "ng e2e",
"build:app": "ng build --configuration production",
"build:lib": "rimraf dist && ng-packagr -p angular-reactive-validation/package.json && rimraf dist/angular-reactive-validation.tgz && cpx README.md dist/angular-reactive-validation",
"publish": "npm publish dist/angular-reactive-validation"
"publish": "cd dist/angular-reactive-validation && npm publish --dry-run && cd ../.."
},
"private": true,
"dependencies": {
Expand Down

0 comments on commit 44abdf6

Please sign in to comment.