Skip to content

Commit

Permalink
Use npm publish instead of lerna for publishing packages
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Weichert committed Sep 20, 2023
1 parent 8342705 commit 59a4b85
Show file tree
Hide file tree
Showing 24 changed files with 91 additions and 89 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -241,9 +241,11 @@ jobs:
fi
fi
# Use either Lerna or NPM Workspaces to publish this package
# For example:
npx lerna publish --scope=${{ matrix.package.name }} from-package --no-push --yes --dist-tag $TAG
# Navigate to package directory
cd ${{ matrix.package.location }}

# Publish using npm with the determined tag
npm publish --tag $TAG
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
"version": "0.39.25",
"version": "0.39.26",
"packages": [
"taqueria-protocol",
"taqueria-plugin*",
Expand Down
86 changes: 43 additions & 43 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@taqueria/root",
"version": "0.39.25",
"version": "0.39.26",
"description": "An easy to use opinionated tool for building, testing, and deploying Tezos software",
"main": "index.ts",
"directories": {
Expand Down
4 changes: 2 additions & 2 deletions taqueria-analytics/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@taqueria/analytics",
"version": "0.39.25",
"version": "0.39.26",
"description": "A TypeScript SDK submitting events for Taqueria activity",
"main": "./index.js",
"source": "./index.ts",
Expand Down Expand Up @@ -35,7 +35,7 @@
},
"homepage": "https://github.com/pinnacle-labs/taqueria#readme",
"dependencies": {
"@taqueria/protocol": "^0.39.25",
"@taqueria/protocol": "^0.39.26",
"node-machine-id-xz": "^1.0.2"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions taqueria-plugin-archetype/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@taqueria/plugin-archetype",
"version": "0.39.25",
"version": "0.39.26",
"description": "A taqueria plugin for compiling Archetype smart contracts",
"targets": {
"default": {
Expand Down Expand Up @@ -40,7 +40,7 @@
},
"homepage": "https://github.com/pinnacle-labs/taqueria#readme",
"dependencies": {
"@taqueria/node-sdk": "^0.39.25",
"@taqueria/node-sdk": "^0.39.26",
"fast-glob": "^3.3.1",
"ts-pattern": "^5.0.5"
},
Expand Down
4 changes: 2 additions & 2 deletions taqueria-plugin-contract-types/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@taqueria/plugin-contract-types",
"version": "0.39.25",
"version": "0.39.26",
"main": "index.cjs",
"module": "index.js",
"source": "index.ts",
Expand Down Expand Up @@ -34,7 +34,7 @@
"typescript": "^5.2.2"
},
"dependencies": {
"@taqueria/node-sdk": "^0.39.25",
"@taqueria/node-sdk": "^0.39.26",
"@taquito/michel-codec": "^17.3.1",
"@taquito/signer": "^17.3.1",
"@taquito/taquito": "^17.3.1",
Expand Down
4 changes: 2 additions & 2 deletions taqueria-plugin-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@taqueria/plugin-core",
"version": "0.39.25",
"version": "0.39.26",
"description": "A taqueria plugin for core tasks",
"targets": {
"default": {
Expand Down Expand Up @@ -43,7 +43,7 @@
"typescript": "^5.2.2"
},
"dependencies": {
"@taqueria/node-sdk": "^0.39.25"
"@taqueria/node-sdk": "^0.39.26"
},
"tsup": {
"entry": [
Expand Down
6 changes: 3 additions & 3 deletions taqueria-plugin-flextesa/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@taqueria/plugin-flextesa",
"version": "0.39.25",
"version": "0.39.26",
"description": "A plugin for Taqueria providing local sandbox capabilities built on Flextesa",
"keywords": [
"taqueria",
Expand Down Expand Up @@ -34,8 +34,8 @@
"directory": "taqueria-plugin-flextesa"
},
"dependencies": {
"@taqueria/node-sdk": "^0.39.25",
"@taqueria/protocol": "^0.39.25",
"@taqueria/node-sdk": "^0.39.26",
"@taqueria/protocol": "^0.39.26",
"async-retry": "^1.3.3",
"fast-glob": "^3.2.12",
"portfinder": "^1.0.32",
Expand Down
Loading

0 comments on commit 59a4b85

Please sign in to comment.