@rozoai/intent-pay 0.0.1 → 0.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +26 -0
- package/build/index.js +4 -3
- package/build/index.js.map +1 -1
- package/package.json +9 -8
- package/src/index.ts +38 -0
package/README.md
CHANGED
|
@@ -1,3 +1,29 @@
|
|
|
1
|
+
# How to release `connectkit` package
|
|
2
|
+
|
|
3
|
+
## Setup
|
|
4
|
+
|
|
5
|
+
Make sure `pnpm` is installed.
|
|
6
|
+
|
|
7
|
+
```sh
|
|
8
|
+
pnpm -v
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
If not, install it.
|
|
12
|
+
|
|
13
|
+
```sh
|
|
14
|
+
npm install -g pnpm
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## Release
|
|
18
|
+
|
|
19
|
+
```sh
|
|
20
|
+
pnpm run release
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
Choose the version.
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
1
27
|
<a href="https://paydocs.daimo.com">
|
|
2
28
|
<img src="https://pbs.twimg.com/profile_banners/1666972322828541954/1733698695/1500x500">
|
|
3
29
|
</a>
|
package/build/index.js
CHANGED
|
@@ -21,8 +21,8 @@ import { WalletSignTransactionError, WalletSendTransactionError } from '@solana/
|
|
|
21
21
|
import { VersionedTransaction } from '@solana/web3.js';
|
|
22
22
|
import { normalize } from 'viem/ens';
|
|
23
23
|
|
|
24
|
-
var name = "@
|
|
25
|
-
var version = "0.0.
|
|
24
|
+
var name = "@rozoai/intent-pay";
|
|
25
|
+
var version = "0.0.7";
|
|
26
26
|
var author = "Daimo";
|
|
27
27
|
var homepage = "https://pay.daimo.com";
|
|
28
28
|
var license = "BSD-2-Clause license";
|
|
@@ -45,7 +45,8 @@ var scripts = {
|
|
|
45
45
|
start: "rollup --config rollup.config.js -w",
|
|
46
46
|
dev: "rollup --config rollup.config.js -w",
|
|
47
47
|
build: "rollup --config rollup.config.js",
|
|
48
|
-
lint: "eslint 'src/**/*.{js,jsx,ts,tsx}' --max-warnings=0"
|
|
48
|
+
lint: "eslint 'src/**/*.{js,jsx,ts,tsx}' --max-warnings=0",
|
|
49
|
+
release: "bumpp"
|
|
49
50
|
};
|
|
50
51
|
var keywords = [
|
|
51
52
|
"ens",
|