@learncard/cli 3.3.98 → 3.3.99
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/CHANGELOG.md +11 -0
- package/dist/index.js +2 -2
- package/package.json +6 -6
- package/src/index.tsx +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @learncard/cli
|
|
2
2
|
|
|
3
|
+
## 3.3.99
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`1ed5313935264890917c6ddf19249ada91d1e524`](https://github.com/learningeconomy/LearnCard/commit/1ed5313935264890917c6ddf19249ada91d1e524), [`1ed5313935264890917c6ddf19249ada91d1e524`](https://github.com/learningeconomy/LearnCard/commit/1ed5313935264890917c6ddf19249ada91d1e524)]:
|
|
8
|
+
- @learncard/core@9.3.29
|
|
9
|
+
- @learncard/types@5.7.0
|
|
10
|
+
- @learncard/init@2.0.17
|
|
11
|
+
- @learncard/didkit-plugin@1.5.16
|
|
12
|
+
- @learncard/learn-cloud-plugin@2.1.25
|
|
13
|
+
|
|
3
14
|
## 3.3.98
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
package/dist/index.js
CHANGED
|
@@ -25,7 +25,7 @@ var crypto__default = /*#__PURE__*/_interopDefaultLegacy(crypto);
|
|
|
25
25
|
const generateRandomSeed = () => crypto__default["default"].randomBytes(32).toString("hex");
|
|
26
26
|
|
|
27
27
|
var name = "@learncard/cli";
|
|
28
|
-
var version = "3.3.
|
|
28
|
+
var version = "3.3.99";
|
|
29
29
|
var description = "Test out learn card!";
|
|
30
30
|
var main = "dist/index.js";
|
|
31
31
|
var bin = "dist/index.js";
|
|
@@ -121,7 +121,7 @@ commander.program.version(packageJson.version).argument("[seed]").action(async (
|
|
|
121
121
|
console.log(
|
|
122
122
|
"For help/documentation regarding your wallet, please read the documentation at\n"
|
|
123
123
|
);
|
|
124
|
-
console.log("https://docs.learncard.com/
|
|
124
|
+
console.log("https://docs.learncard.com/sdks/learncard-core/construction\n");
|
|
125
125
|
console.log("To get a feel for what's possible, try some of the following commands\n");
|
|
126
126
|
console.log("\u250C\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u252C\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510");
|
|
127
127
|
console.log("\u2502 Description \u2502 Command \u2502");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@learncard/cli",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.99",
|
|
4
4
|
"description": "Test out learn card!",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": "dist/index.js",
|
|
@@ -14,11 +14,11 @@
|
|
|
14
14
|
"pretty-repl": "^3.1.1",
|
|
15
15
|
"rollup": "^2.71.1",
|
|
16
16
|
"rollup-plugin-esbuild": "^4.9.1",
|
|
17
|
-
"@learncard/core": "9.3.
|
|
18
|
-
"@learncard/didkit-plugin": "^1.5.
|
|
19
|
-
"@learncard/
|
|
20
|
-
"@learncard/
|
|
21
|
-
"@learncard/
|
|
17
|
+
"@learncard/core": "9.3.29",
|
|
18
|
+
"@learncard/didkit-plugin": "^1.5.16",
|
|
19
|
+
"@learncard/learn-cloud-plugin": "2.1.25",
|
|
20
|
+
"@learncard/init": "^2.0.17",
|
|
21
|
+
"@learncard/types": "5.7.0"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"@types/cors": "^2.8.12",
|
package/src/index.tsx
CHANGED
|
@@ -81,7 +81,7 @@ program
|
|
|
81
81
|
'For help/documentation regarding your wallet, please read the documentation at\n'
|
|
82
82
|
);
|
|
83
83
|
|
|
84
|
-
console.log('https://docs.learncard.com/
|
|
84
|
+
console.log('https://docs.learncard.com/sdks/learncard-core/construction\n');
|
|
85
85
|
|
|
86
86
|
console.log("To get a feel for what's possible, try some of the following commands\n");
|
|
87
87
|
|