eitri-cli 1.26.1 → 1.27.0

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/index.js CHANGED
@@ -94,14 +94,11 @@ const run = async () => {
94
94
  )
95
95
  .option("-v, --verbose", "Exibe mais logs")
96
96
  .action(async (projectName, cmdObj) => {
97
- if (process.env.FT_CREATE_V2) {
98
- const eitriCLIV2 = require("./eitri-cli-v2/index.js");
99
- return await eitriCLIV2.create({
100
- ...cmdObj,
101
- projectName
102
- });
103
- }
104
- require("./src/cmd/create")(projectName, cmdObj);
97
+ const eitriCLIV2 = require("./eitri-cli-v2/index.js");
98
+ return await eitriCLIV2.create({
99
+ ...cmdObj,
100
+ projectName
101
+ });
105
102
  });
106
103
 
107
104
  let startProgram = program
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eitri-cli",
3
- "version": "1.26.1",
3
+ "version": "1.27.0",
4
4
  "description": "Command Line Interface to make \"Eitri-App\" with code and fire.",
5
5
  "main": "index.js",
6
6
  "bin": {