@akanjs/devkit 0.0.47 → 0.0.48
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@akanjs/devkit",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.48",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -22,7 +22,6 @@
|
|
|
22
22
|
"@trapezedev/project": "^7.1.3",
|
|
23
23
|
"axios": "^1.7.9",
|
|
24
24
|
"commander": "^13.1.0",
|
|
25
|
-
"dotenv": "^16.4.7",
|
|
26
25
|
"form-data": "^4.0.1",
|
|
27
26
|
"js-yaml": "^4.1.0",
|
|
28
27
|
"ora": "^3.4.0",
|
|
@@ -1,8 +1,6 @@
|
|
|
1
|
-
var __create = Object.create;
|
|
2
1
|
var __defProp = Object.defineProperty;
|
|
3
2
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
3
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
-
var __getProtoOf = Object.getPrototypeOf;
|
|
6
4
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
5
|
var __export = (target, all) => {
|
|
8
6
|
for (var name in all)
|
|
@@ -16,14 +14,6 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
16
14
|
}
|
|
17
15
|
return to;
|
|
18
16
|
};
|
|
19
|
-
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
20
|
-
// If the importer is in node compatibility mode or this is not an ESM
|
|
21
|
-
// file that has been converted to a CommonJS file using a Babel-
|
|
22
|
-
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
23
|
-
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
24
|
-
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
25
|
-
mod
|
|
26
|
-
));
|
|
27
17
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
28
18
|
var command_exports = {};
|
|
29
19
|
__export(command_exports, {
|
|
@@ -32,7 +22,6 @@ __export(command_exports, {
|
|
|
32
22
|
module.exports = __toCommonJS(command_exports);
|
|
33
23
|
var import_prompts = require("@inquirer/prompts");
|
|
34
24
|
var import_commander = require("commander");
|
|
35
|
-
var import_dotenv = __toESM(require("dotenv"));
|
|
36
25
|
var import_executors = require("../executors");
|
|
37
26
|
var import_argMeta = require("./argMeta");
|
|
38
27
|
var import_targetMeta = require("./targetMeta");
|
|
@@ -125,7 +114,6 @@ const getArgumentValue = async (argMeta, value, workspace) => {
|
|
|
125
114
|
throw new Error(`Invalid system type: ${argMeta.type}`);
|
|
126
115
|
};
|
|
127
116
|
const runCommands = async (...commands) => {
|
|
128
|
-
import_dotenv.default.config();
|
|
129
117
|
import_commander.program.version("0.0.1").description("An example CLI for managing a directory");
|
|
130
118
|
for (const command of commands) {
|
|
131
119
|
const targetMetas = (0, import_targetMeta.getTargetMetas)(command);
|