generated from protokol/core-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: separate automation and yarn2 publish (#26)
* chore: return publish yarn script commands * chore: deps update * chore: update and yarn publish:beta from root * chore: make publish script npm based * chore: version bump
- Loading branch information
Showing
18 changed files
with
414 additions
and
158 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file added
BIN
+591 KB
.yarn/cache/@typescript-eslint-eslint-plugin-npm-4.8.0-6f63a5acc8-695e04c989.zip
Binary file not shown.
Binary file added
BIN
+166 KB
.yarn/cache/@typescript-eslint-experimental-utils-npm-4.8.0-dd10dc0846-1781e5cc7b.zip
Binary file not shown.
Binary file added
BIN
+17.4 KB
.yarn/cache/@typescript-eslint-parser-npm-4.8.0-f66c72a99b-d93a0ef008.zip
Binary file not shown.
Binary file added
BIN
+275 KB
.yarn/cache/@typescript-eslint-scope-manager-npm-4.8.0-bdcf80c911-6d18290a15.zip
Binary file not shown.
Binary file added
BIN
+27.7 KB
.yarn/cache/@typescript-eslint-types-npm-4.8.0-56421fc439-9f1e89bae0.zip
Binary file not shown.
Binary file added
BIN
+119 KB
.yarn/cache/@typescript-eslint-typescript-estree-npm-4.8.0-c7fc083b0b-52ac3fa1ec.zip
Binary file not shown.
Binary file added
BIN
+10.3 KB
.yarn/cache/@typescript-eslint-visitor-keys-npm-4.8.0-a4ffc4ea08-8e66039e3f.zip
Binary file not shown.
Binary file not shown.
Binary file renamed
BIN
+45.1 KB
...ates-npm-10.2.0-274b399d9c-f1c432e034.zip → ...ates-npm-10.2.1-34e8c7406c-e3d9f0a103.zip
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/usr/bin/env bash | ||
for dir in `find packages -mindepth 1 -maxdepth 1 -type d | sort -nr`; do | ||
cd $dir | ||
echo $PWD | ||
yarn dlx npm-check-updates -u | ||
cd ../.. | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/usr/bin/env bash | ||
|
||
cd packages | ||
cd guardian-crypto && npm publish --tag beta --access public --tolerate-republish && cd .. | ||
cd guardian-transactions && npm publish --tag beta --access public --tolerate-republish && cd .. | ||
cd guardian-api && npm publish --tag beta --access public --tolerate-republish && cd .. |
Oops, something went wrong.