eitri-cli 1.20.0 → 1.21.0-beta.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.
@@ -1,5 +1,14 @@
1
1
  {
2
- "cSpell.words": ["bifrost", "eitri", "luminus", "miniapp", "napi", "Unmocked", "Vegvisir"],
2
+ "cSpell.words": [
3
+ "bifrost",
4
+ "eitri",
5
+ "luminus",
6
+ "miniapp",
7
+ "napi",
8
+ "Unmocked",
9
+ "vegvisir",
10
+ "Vegvisir"
11
+ ],
3
12
  "rust-analyzer.showUnlinkedFileNotification": false,
4
13
  "cSpell.language": "en,pt,pt-BR"
5
- }
14
+ }
@@ -17,7 +17,7 @@ pipelines:
17
17
  - dig +short ns eitri.tech
18
18
  - cd eitri-cli-v2
19
19
  - npm i
20
- - npm i puppeteer@21.4.1
20
+ - npm i puppeteer@22.12.1
21
21
  - npm run build:debug
22
22
  - cd ..
23
23
  - npm i
@@ -34,7 +34,7 @@ pipelines:
34
34
  - dig +short ns eitri.tech
35
35
  - cd eitri-cli-v2
36
36
  - npm i
37
- - npm i puppeteer@21.4.1
37
+ - npm i puppeteer@22.12.1
38
38
  - npm run build:debug
39
39
  - cd ..
40
40
  - yarn
@@ -42,6 +42,7 @@ sha1 = "0.10.6"
42
42
  file-hashing = "0.1.2"
43
43
  qr2term = "0.3.1"
44
44
  fs_extra = "1.3.0"
45
+ base64 = "0.22.1"
45
46
 
46
47
  [dependencies.uuid]
47
48
  version = "1.8.0"
package/index.js CHANGED
@@ -88,12 +88,8 @@ const run = async () => {
88
88
  .option("-sh, --shared", "Executa o Eitri-App no modo compartilhável.")
89
89
 
90
90
  startProgram.action(async (cmdObj) => {
91
- if (process.env.FT_START_V2 === "true") {
92
- console.log("Eitri-App start (v2)");
93
- const eitriCLIV2 = require("./eitri-cli-v2/index.js");
94
- return await eitriCLIV2.start(cmdObj);
95
- }
96
- require("./src/cmd/start")(cmdObj);
91
+ const eitriCLIV2 = require("./eitri-cli-v2/index.js");
92
+ return await eitriCLIV2.start(cmdObj);
97
93
  });
98
94
 
99
95
  program
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eitri-cli",
3
- "version": "1.20.0",
3
+ "version": "1.21.0-beta.1",
4
4
  "description": "Command Line Interface to make \"Eitri-App\" with code and fire.",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -73,7 +73,6 @@
73
73
  "@faker-js/faker": "^7.6.0",
74
74
  "@semantic-release/changelog": "^6.0.3",
75
75
  "@semantic-release/git": "^10.0.1",
76
- "docsify-cli": "^4.4.2",
77
76
  "eslint": "^9.5.0",
78
77
  "eslint-config-google": "^0.14.0",
79
78
  "eslint-plugin-jest": "^28.6.0",
@@ -83,7 +82,7 @@
83
82
  "lint-staged": "^9.5.0",
84
83
  "nock": "^13.3.0",
85
84
  "prettier": "^3.3.2",
86
- "puppeteer": "^22.11.2",
85
+ "puppeteer": "22.12.1",
87
86
  "semantic-release": "^22.0.8"
88
87
  },
89
88
  "resolutions": {