Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FE] Fix published files #4636

Merged
merged 1 commit into from
Sep 14, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
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
12 changes: 12 additions & 0 deletions .changeset/sour-moose-speak.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
"@mysten/bcs": patch
"@mysten/sui.js": patch
"@mysten/wallet-adapter-all-wallets": patch
"@mysten/wallet-adapter-base": patch
"@mysten/wallet-adapter-mock-wallet": patch
"@mysten/wallet-adapter-sui-wallet": patch
"@mysten/wallet-adapter-react": patch
"@mysten/wallet-adapter-react-ui": patch
---

Fix missing built files for packages.
2 changes: 0 additions & 2 deletions sdk/typescript/bcs/.npmignore

This file was deleted.

5 changes: 5 additions & 0 deletions sdk/typescript/bcs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@
"require": "./dist/index.js"
}
},
"files": [
"dist",
"src",
"CHANGELOG.md"
],
"scripts": {
"build": "pnpm build:types && tsup ./src/index.ts --format esm,cjs --sourcemap",
"build:types": "tsc --build",
Expand Down
3 changes: 2 additions & 1 deletion sdk/typescript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"license": "Apache-2.0",
"files": [
"dist",
"src"
"src",
"CHANGELOG.md"
],
"engines": {
"node": ">=16"
Expand Down
5 changes: 5 additions & 0 deletions wallet-adapter/packages/adapters/all-wallets/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@
"require": "./dist/index.js"
}
},
"files": [
"dist",
"src",
"CHANGELOG.md"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "pnpm build:types && tsup ./src/index.ts --format esm,cjs --sourcemap",
Expand Down
5 changes: 5 additions & 0 deletions wallet-adapter/packages/adapters/base-adapter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@
"require": "./dist/index.js"
}
},
"files": [
"dist",
"src",
"CHANGELOG.md"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "pnpm build:types && tsup ./src/index.ts --format esm,cjs --sourcemap",
Expand Down
5 changes: 5 additions & 0 deletions wallet-adapter/packages/adapters/mock-wallet/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@
"require": "./dist/index.js"
}
},
"files": [
"dist",
"src",
"CHANGELOG.md"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "pnpm build:types && tsup ./src/index.ts --format esm,cjs --sourcemap",
Expand Down
5 changes: 5 additions & 0 deletions wallet-adapter/packages/adapters/sui-wallet/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@
"require": "./dist/index.js"
}
},
"files": [
"dist",
"src",
"CHANGELOG.md"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "pnpm build:types && tsup ./src/index.ts --format esm,cjs --sourcemap",
Expand Down
5 changes: 5 additions & 0 deletions wallet-adapter/packages/react-providers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@
"require": "./dist/index.js"
}
},
"files": [
"dist",
"src",
"CHANGELOG.md"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "pnpm build:types && tsup ./src/index.ts --format esm,cjs --sourcemap",
Expand Down
5 changes: 5 additions & 0 deletions wallet-adapter/packages/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@
"require": "./dist/index.js"
}
},
"files": [
"dist",
"src",
"CHANGELOG.md"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "pnpm build:types && tsup ./src/index.ts --format esm,cjs --sourcemap",
Expand Down