Skip to content

Commit

Permalink
Merge pull request #800 from amvanbaren/fix-yarn-publish
Browse files Browse the repository at this point in the history
Fix yarn publish commands
  • Loading branch information
amvanbaren authored Aug 8, 2023
2 parents 3a552cc + 5fefabe commit 13c9ecc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@
"watch": "tsc -w -p ./tsconfig.json",
"lint": "eslint -c ./configs/eslintrc.json --ext .ts src",
"prepare": "yarn run clean && yarn run build",
"publish:next": "yarn publish --new-version \"$(semver $npm_package_version -i minor)-next.$(git rev-parse --short HEAD)\" --tag next --no-git-tag-version",
"publish:latest": "yarn publish --tag latest"
"publish:next": "yarn npm publish --tag next",
"publish:latest": "yarn npm publish --tag latest"
},
"packageManager": "[email protected]"
}
4 changes: 2 additions & 2 deletions webui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,8 @@
"watch:default": "webpack --config ./configs/webpack.config.js --mode development --watch",
"start:default": "node lib/default/server",
"copy2server": "cp -rfv static ../server/src/dev/resources/",
"publish:next": "yarn publish --new-version \"$(semver $npm_package_version -i minor)-next.$(git rev-parse --short HEAD)\" --tag next --no-git-tag-version",
"publish:latest": "yarn publish --tag latest"
"publish:next": "yarn npm publish --tag next",
"publish:latest": "yarn npm publish --tag latest"
},
"packageManager": "[email protected]"
}

0 comments on commit 13c9ecc

Please sign in to comment.