-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: use pkg json's exports key and bump vers to 0.1.0-rc.3
This also renames package output to index.mjs to communicate clearly its esm.
- Loading branch information
Showing
13 changed files
with
447 additions
and
2,959 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
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -2,10 +2,14 @@ | |
"name": "@nillion/client-core", | ||
"license": "MIT", | ||
"author": "[email protected]", | ||
"version": "0.1.0-rc.2", | ||
"version": "0.1.0-rc.3", | ||
"type": "module", | ||
"browser": "dist/index.js", | ||
"types": "src/index.ts", | ||
"exports": { | ||
".": { | ||
"types": "./src/index.ts", | ||
"import": "./dist/index.mjs" | ||
} | ||
}, | ||
"scripts": { | ||
"clean": "rm -rf dist", | ||
"build": "node esbuild.config.mjs", | ||
|
@@ -16,7 +20,7 @@ | |
"test:serve": "npx jasmine-browser-runner serve --config=jasmine.config.mjs" | ||
}, | ||
"dependencies": { | ||
"@nillion/client-wasm": "^0.1.0-rc.2", | ||
"@nillion/client-wasm": "0.1.0-rc.3", | ||
"debug": "^4.3.5", | ||
"effect": "^3.5.5", | ||
"zod": "^3.23.8" | ||
|
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 |
---|---|---|
|
@@ -2,10 +2,14 @@ | |
"name": "@nillion/client-payments", | ||
"license": "MIT", | ||
"author": "[email protected]", | ||
"version": "0.1.0-rc.2", | ||
"version": "0.1.0-rc.3", | ||
"type": "module", | ||
"browser": "dist/index.js", | ||
"types": "src/index.ts", | ||
"exports": { | ||
".": { | ||
"types": "./src/index.ts", | ||
"import": "./dist/index.mjs" | ||
} | ||
}, | ||
"scripts": { | ||
"clean": "rm -rf dist", | ||
"build": "node esbuild.config.mjs", | ||
|
@@ -19,7 +23,7 @@ | |
"dependencies": { | ||
"@cosmjs/proto-signing": "^0.32.4", | ||
"@cosmjs/stargate": "^0.32.4", | ||
"@nillion/client-core": "^0.1.0-rc.2", | ||
"@nillion/client-core": "^0.1.0-rc.3", | ||
"debug": "^4.3.5", | ||
"effect": "^3.5.5", | ||
"protobufjs": "^7.3.2", | ||
|
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 |
---|---|---|
|
@@ -2,18 +2,21 @@ | |
"name": "@nillion/client-react-hooks", | ||
"license": "MIT", | ||
"author": "[email protected]", | ||
"version": "0.1.0-rc.2", | ||
"version": "0.1.0-rc.3", | ||
"type": "module", | ||
"module": "dist/index.js", | ||
"browser": "dist/index.js", | ||
"types": "src/index.ts", | ||
"exports": { | ||
".": { | ||
"types": "./src/index.ts", | ||
"import": "./dist/index.mjs" | ||
} | ||
}, | ||
"scripts": { | ||
"clean": "rm -rf dist", | ||
"build": "node esbuild.config.mjs", | ||
"build:watch": "node esbuild.config.mjs --watch" | ||
}, | ||
"dependencies": { | ||
"@nillion/client-vms": "^0.1.0-rc.2", | ||
"@nillion/client-vms": "^0.1.0-rc.3", | ||
"@tanstack/react-query": "^5.51.9", | ||
"debug": "^4.3.5", | ||
"react": "^18.3.1" | ||
|
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 |
---|---|---|
|
@@ -2,10 +2,14 @@ | |
"name": "@nillion/client-vms", | ||
"license": "MIT", | ||
"author": "[email protected]", | ||
"version": "0.1.0-rc.2", | ||
"version": "0.1.0-rc.3", | ||
"type": "module", | ||
"browser": "dist/index.js", | ||
"types": "src/index.ts", | ||
"exports": { | ||
".": { | ||
"types": "./src/index.ts", | ||
"import": "./dist/index.mjs" | ||
} | ||
}, | ||
"scripts": { | ||
"clean": "rm -rf dist", | ||
"build": "node esbuild.config.mjs", | ||
|
@@ -16,8 +20,8 @@ | |
"test:serve": "npx jasmine-browser-runner serve --config=jasmine.config.mjs" | ||
}, | ||
"dependencies": { | ||
"@nillion/client-core": "^0.1.0-rc.2", | ||
"@nillion/client-payments": "^0.1.0-rc.2", | ||
"@nillion/client-core": "^0.1.0-rc.3", | ||
"@nillion/client-payments": "^0.1.0-rc.3", | ||
"debug": "^4.3.5", | ||
"zod": "^3.23.8" | ||
}, | ||
|
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 |
---|---|---|
|
@@ -2,13 +2,15 @@ | |
"name": "@nillion/client-wasm", | ||
"license": "Apache-2.0", | ||
"author": "[email protected]", | ||
"version": "0.1.0-rc.2", | ||
"version": "0.1.0-rc.3", | ||
"homepage": "https://docs.nillion.com/", | ||
"type": "module", | ||
"module": "dist/index.js", | ||
"main": "dist/index.js", | ||
"browser": "dist/index.js", | ||
"types": "dist/index.d.ts", | ||
"exports": { | ||
".": { | ||
"types": "./src/index.d.ts", | ||
"import": "./dist/index.js" | ||
} | ||
}, | ||
"sideEffects": [ | ||
"dist/snippets/**" | ||
], | ||
|
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