Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
force build all packages before releasing (fixes auth and solana expo…
…rts)
  • Loading branch information
jnsdls committed Sep 1, 2022
commit b3082b3f8b1dfc53dbf3b76567a09fa8194207c5
5 changes: 5 additions & 0 deletions .changeset/ten-seahorses-begin.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@thirdweb-dev/solana": patch
---

add ESM build for solana
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@ jobs:
EOF

- name: Publish Nightly version to NPM
run: yarn ci:release:nightly
run: yarn release:nightly
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,14 @@
"test": "turbo run test",
"e2e": "turbo run e2e",
"build": "turbo run build",
"build:release": "turbo run build --force",
"dev": "turbo run dev --no-cache --parallel --continue",
"lint": "turbo run lint",
"clean": "turbo run clean && rm -rf node_modules",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"changeset": "changeset",
"release": "turbo run build && changeset publish",
"ci:release:nightly": "turbo run build && changeset version --snapshot nightly && changeset publish --tag nightly --no-git-tag"
"release": "yarn build:release && changeset publish",
"release:nightly": "yarn build:release && changeset version --snapshot nightly && changeset publish --tag nightly --no-git-tag"
},
"preconstruct": {
"packages": [
Expand Down
1 change: 1 addition & 0 deletions packages/solana/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"version": "0.2.1",
"description": "thirdweb Solana SDK",
"main": "dist/thirdweb-dev-solana.cjs.js",
"module": "dist/thirdweb-dev-solana.esm.js",
"repository": "[email protected]:thirdweb-dev/solana.git",
"author": "thirdweb eng <[email protected]>",
"license": "Apache-2.0",
Expand Down
3 changes: 2 additions & 1 deletion packages/solana/server/package.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{
"main": "dist/thirdweb-dev-solana-server.cjs.js"
"main": "dist/thirdweb-dev-solana-server.cjs.js",
"module": "dist/thirdweb-dev-solana-server.esm.js"
}