@stellar/typescript-wallet-sdk 1.0.0-alpha.0 → 1.0.0-alpha.1
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 +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -17,10 +17,10 @@ npm link
|
|
|
17
17
|
|
|
18
18
|
// change to your wallet directory, and then create npm link
|
|
19
19
|
cd my-wallet
|
|
20
|
-
npm link typescript-wallet-sdk
|
|
20
|
+
npm link @stellar/typescript-wallet-sdk
|
|
21
21
|
|
|
22
22
|
// import in wallet code
|
|
23
|
-
import typescript-wallet-sdk from "typescript-wallet-sdk"
|
|
23
|
+
import typescript-wallet-sdk from "@stellar/typescript-wallet-sdk"
|
|
24
24
|
```
|
|
25
25
|
|
|
26
26
|
### To run tests:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stellar/typescript-wallet-sdk",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.1",
|
|
4
4
|
"engines": {
|
|
5
5
|
"node": ">=18"
|
|
6
6
|
},
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"webpack-cli": "^5.1.1"
|
|
34
34
|
},
|
|
35
35
|
"scripts": {
|
|
36
|
-
"
|
|
36
|
+
"prepare": "yarn build",
|
|
37
37
|
"test": "jest --watchAll",
|
|
38
38
|
"build": "webpack --config webpack.config.js"
|
|
39
39
|
}
|