Skip to content

Commit

Permalink
ocular-dev-tools-2.0.0-alpha.33
Browse files Browse the repository at this point in the history
  • Loading branch information
Pessimistress committed Apr 25, 2024
1 parent ea87894 commit dbe49e8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions modules/dev-tools/CHANGELOG.md
@@ -1,5 +1,9 @@
# CHANGELOG (ocular-dev-tools)

## v2.0.0-alpha.33

- fix(dev-tools): skip interaction when running ocular-publish on CI

## v2.0.0-alpha.32

- fix(dev-tools): switch to use lerna publish from-package
Expand Down
2 changes: 1 addition & 1 deletion modules/dev-tools/package.json
Expand Up @@ -2,7 +2,7 @@
"name": "ocular-dev-tools",
"description": "Dev tools for our Javascript frameworks",
"license": "MIT",
"version": "2.0.0-alpha.32",
"version": "2.0.0-alpha.33",
"type": "module",
"keywords": [
"javascript"
Expand Down
4 changes: 2 additions & 2 deletions modules/dev-tools/scripts/publish.sh
Expand Up @@ -34,9 +34,9 @@ publishToNPM() {
if [ -d "modules" ]; then
if [ -z $tag ]; then
# use default tag ('latest' or publishConfig.tag in package.json)
(set -x; npx lerna publish from-package --force-publish --no-commit-hooks)
(set -x; npx lerna publish from-package --force-publish --yes --no-commit-hooks)
else
(set -x; npx lerna publish from-package --force-publish --dist-tag $tag --no-commit-hooks)
(set -x; npx lerna publish from-package --force-publish --yes --dist-tag $tag --no-commit-hooks)
fi
else
if [ -z $tag ]; then
Expand Down

0 comments on commit dbe49e8

Please sign in to comment.