@learncard/cli 1.4.2 → 1.4.4
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 +15 -0
- package/dist/index.js +7 -3
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @learncard/cli
|
|
2
2
|
|
|
3
|
+
## 1.4.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`02c7de0`](https://github.com/learningeconomy/LearnCard/commit/02c7de09f88ae78882d59c9f8ac898a7d5bac342), [`02c7de0`](https://github.com/learningeconomy/LearnCard/commit/02c7de09f88ae78882d59c9f8ac898a7d5bac342), [`02c7de0`](https://github.com/learningeconomy/LearnCard/commit/02c7de09f88ae78882d59c9f8ac898a7d5bac342), [`02c7de0`](https://github.com/learningeconomy/LearnCard/commit/02c7de09f88ae78882d59c9f8ac898a7d5bac342)]:
|
|
8
|
+
- @learncard/core@6.2.0
|
|
9
|
+
|
|
10
|
+
## 1.4.3
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [[`c1befdc`](https://github.com/learningeconomy/LearnCard/commit/c1befdc8a30d3cc111d938c530493b1a5b87aa00), [`c1befdc`](https://github.com/learningeconomy/LearnCard/commit/c1befdc8a30d3cc111d938c530493b1a5b87aa00)]:
|
|
15
|
+
- @learncard/core@6.1.0
|
|
16
|
+
- @learncard/types@3.0.0
|
|
17
|
+
|
|
3
18
|
## 1.4.2
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
package/dist/index.js
CHANGED
|
@@ -20,7 +20,7 @@ var crypto__default = /*#__PURE__*/_interopDefaultLegacy(crypto);
|
|
|
20
20
|
const generateRandomSeed = () => crypto__default["default"].randomBytes(32).toString("hex");
|
|
21
21
|
|
|
22
22
|
var name = "@learncard/cli";
|
|
23
|
-
var version = "1.4.
|
|
23
|
+
var version = "1.4.4";
|
|
24
24
|
var description = "Test out learn card!";
|
|
25
25
|
var main = "dist/index.js";
|
|
26
26
|
var bin = "dist/index.js";
|
|
@@ -104,8 +104,12 @@ commander.program.version(packageJson.version).argument("[seed]").action(async (
|
|
|
104
104
|
console.log(`\u2502 ${g.generateRandomSeed} \u2502 Generates a random seed \u2502`);
|
|
105
105
|
console.log("\u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\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\u2518");
|
|
106
106
|
console.log("");
|
|
107
|
-
console.log(
|
|
108
|
-
|
|
107
|
+
console.log(
|
|
108
|
+
"For help/documentation regarding your wallet, please read the documentation at\n"
|
|
109
|
+
);
|
|
110
|
+
console.log(
|
|
111
|
+
"https://app.gitbook.com/o/6uDv1QDlxaaZC7i8EaGb/s/FXvEJ9j3Vf3FW5Nc557n/learn-card-packages/learncard-core/quick-start\n"
|
|
112
|
+
);
|
|
109
113
|
console.log("To get a feel for what's possible, try some of the following commands\n");
|
|
110
114
|
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\u2510");
|
|
111
115
|
console.log("\u2502 Description \u2502 Command \u2502");
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@learncard/cli",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.4",
|
|
4
4
|
"description": "Test out learn card!",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": "dist/index.js",
|
|
7
7
|
"author": "Learning Economy Foundation (www.learningeconomy.io)",
|
|
8
8
|
"license": "MIT",
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@learncard/core": "6.
|
|
11
|
-
"@learncard/types": "
|
|
10
|
+
"@learncard/core": "6.2.0",
|
|
11
|
+
"@learncard/types": "3.0.0",
|
|
12
12
|
"@rollup/plugin-json": "^4.1.0",
|
|
13
13
|
"commander": "^9.3.0",
|
|
14
14
|
"figlet": "^1.5.2",
|