Skip to content

Commit

Permalink
fix: change name to available name (#100)
Browse files Browse the repository at this point in the history
  • Loading branch information
callicles authored Dec 16, 2023
1 parent 2bf44ec commit 05d08cc
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion apps/create-moose-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@
"typescript": "^4.9.5"
},
"dependencies": {
"moose": "latest"
"@514labs/moose-cli": "latest"
}
}
2 changes: 1 addition & 1 deletion apps/create-moose-app/scripts/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ npm version $version --no-git-tag-version

jq \
--arg VERSION "$version" \
'.["dependencies"]["moose"] = $VERSION' package.json > package.json.tmp \
'.["dependencies"]["@514labs/moose-cli"] = $VERSION' package.json > package.json.tmp \
&& mv package.json.tmp package.json

cd ../..
Expand Down
2 changes: 1 addition & 1 deletion apps/moose-cli-npm/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "moose",
"name": "@514labs/moose-cli",
"version": "0.0.0",
"bin": {
"igloo": "dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion apps/moose-cli-npm/scripts/release-cli.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ cd ../..

# # This is run twice since the change the value of the dependencies in the previous step
pnpm install --no-frozen-lockfile # requires optional dependencies to be present in the registry
pnpm build --filter moose
pnpm build --filter @514labs/moose-cli

cd apps/moose-cli-npm
pnpm publish --access public --no-git-checks

0 comments on commit 05d08cc

Please sign in to comment.