convoker 0.5.1 → 0.5.2
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/dist/index.cjs +4 -4
- package/dist/index.d.cts +2 -2
- package/dist/index.d.mts +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +6 -6
- package/src/index.ts +1 -1
package/dist/index.cjs
CHANGED
|
@@ -26,19 +26,19 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
26
26
|
}) : target, mod));
|
|
27
27
|
|
|
28
28
|
//#endregion
|
|
29
|
-
let _convoker_input = require("@convoker/input");
|
|
30
|
-
_convoker_input = __toESM(_convoker_input);
|
|
31
29
|
let _convoker_theme = require("@convoker/theme");
|
|
32
30
|
_convoker_theme = __toESM(_convoker_theme);
|
|
31
|
+
let _convoker_theme_global = require("@convoker/theme/global");
|
|
32
|
+
_convoker_theme_global = __toESM(_convoker_theme_global);
|
|
33
33
|
let _convoker_log = require("@convoker/log");
|
|
34
34
|
_convoker_log = __toESM(_convoker_log);
|
|
35
35
|
let _convoker_prompt = require("@convoker/prompt");
|
|
36
36
|
_convoker_prompt = __toESM(_convoker_prompt);
|
|
37
37
|
|
|
38
|
-
Object.defineProperty(exports, '
|
|
38
|
+
Object.defineProperty(exports, 'globals', {
|
|
39
39
|
enumerable: true,
|
|
40
40
|
get: function () {
|
|
41
|
-
return
|
|
41
|
+
return _convoker_theme_global;
|
|
42
42
|
}
|
|
43
43
|
});
|
|
44
44
|
Object.defineProperty(exports, 'log', {
|
package/dist/index.d.cts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as i from "@convoker/input";
|
|
2
1
|
import * as theme from "@convoker/theme";
|
|
2
|
+
import * as globals from "@convoker/theme/global";
|
|
3
3
|
import * as log from "@convoker/log";
|
|
4
4
|
import * as prompt from "@convoker/prompt";
|
|
5
5
|
export * from "@convoker/core";
|
|
6
|
-
export {
|
|
6
|
+
export { globals, log, prompt, theme };
|
package/dist/index.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as i from "@convoker/input";
|
|
2
1
|
import * as theme from "@convoker/theme";
|
|
2
|
+
import * as globals from "@convoker/theme/global";
|
|
3
3
|
import * as log from "@convoker/log";
|
|
4
4
|
import * as prompt from "@convoker/prompt";
|
|
5
5
|
export * from "@convoker/core";
|
|
6
|
-
export {
|
|
6
|
+
export { globals, log, prompt, theme };
|
package/dist/index.mjs
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import * as i from "@convoker/input";
|
|
2
1
|
import * as theme from "@convoker/theme";
|
|
2
|
+
import * as globals from "@convoker/theme/global";
|
|
3
3
|
import * as log from "@convoker/log";
|
|
4
4
|
import * as prompt from "@convoker/prompt";
|
|
5
5
|
|
|
6
6
|
export * from "@convoker/core"
|
|
7
7
|
|
|
8
|
-
export {
|
|
8
|
+
export { globals, log, prompt, theme };
|
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "convoker",
|
|
3
|
-
"
|
|
3
|
+
"type": "module",
|
|
4
|
+
"version": "0.5.2",
|
|
4
5
|
"description": "A simple, type-safe CLI framework.",
|
|
5
6
|
"exports": {
|
|
6
7
|
".": {
|
|
@@ -24,11 +25,10 @@
|
|
|
24
25
|
"dist"
|
|
25
26
|
],
|
|
26
27
|
"dependencies": {
|
|
27
|
-
"@convoker/core": "0.1.
|
|
28
|
-
"@convoker/log": "0.1.
|
|
29
|
-
"@convoker/
|
|
30
|
-
"@convoker/
|
|
31
|
-
"@convoker/theme": "0.1.1"
|
|
28
|
+
"@convoker/core": "^0.1.2",
|
|
29
|
+
"@convoker/log": "^0.1.2",
|
|
30
|
+
"@convoker/theme": "^0.1.1",
|
|
31
|
+
"@convoker/prompt": "^0.3.0"
|
|
32
32
|
},
|
|
33
33
|
"publishConfig": {
|
|
34
34
|
"access": "public"
|
package/src/index.ts
CHANGED