conductor-install 0.0.1 → 0.0.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/README.md +1 -1
- package/dist/conductor-install.cjs +2 -2
- package/dist/conductor-install.js +1 -1
- package/dist/index.cjs +1 -1
- package/package.json +4 -1
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://badge.fury.io/js/conductor-install)
|
|
4
4
|
|
|
5
|
-
<img src="./
|
|
5
|
+
<img src="./conductor_install_banner.png" height="400" alt="Conductor Install Banner" />
|
|
6
6
|
|
|
7
7
|
[English](./README.md) | [中文](./README_zh.md) | [日本語](./README_ja.md) | [한국어](./README_ko.md)
|
|
8
8
|
|
|
@@ -23,7 +23,7 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
23
23
|
mod
|
|
24
24
|
));
|
|
25
25
|
|
|
26
|
-
// node_modules
|
|
26
|
+
// node_modules/tsup/assets/cjs_shims.js
|
|
27
27
|
var getImportMetaUrl = () => typeof document === "undefined" ? new URL(`file:${__filename}`).href : document.currentScript && document.currentScript.tagName.toUpperCase() === "SCRIPT" ? document.currentScript.src : new URL("main.js", document.baseURI).href;
|
|
28
28
|
var importMetaUrl = /* @__PURE__ */ getImportMetaUrl();
|
|
29
29
|
|
|
@@ -721,7 +721,7 @@ var CONDUCTOR_INSTALL_BANNER = `
|
|
|
721
721
|
|
|
722
722
|
`;
|
|
723
723
|
function printInstallBanner() {
|
|
724
|
-
console.log((0, import_gradient_string.default)("
|
|
724
|
+
console.log((0, import_gradient_string.default)("green", "cyan")(CONDUCTOR_INSTALL_BANNER));
|
|
725
725
|
}
|
|
726
726
|
|
|
727
727
|
// src/conductor-install.ts
|
|
@@ -694,7 +694,7 @@ var CONDUCTOR_INSTALL_BANNER = `
|
|
|
694
694
|
|
|
695
695
|
`;
|
|
696
696
|
function printInstallBanner() {
|
|
697
|
-
console.log(gradient("
|
|
697
|
+
console.log(gradient("green", "cyan")(CONDUCTOR_INSTALL_BANNER));
|
|
698
698
|
}
|
|
699
699
|
|
|
700
700
|
// src/conductor-install.ts
|
package/dist/index.cjs
CHANGED
|
@@ -23,7 +23,7 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
23
23
|
mod
|
|
24
24
|
));
|
|
25
25
|
|
|
26
|
-
// node_modules
|
|
26
|
+
// node_modules/tsup/assets/cjs_shims.js
|
|
27
27
|
var getImportMetaUrl = () => typeof document === "undefined" ? new URL(`file:${__filename}`).href : document.currentScript && document.currentScript.tagName.toUpperCase() === "SCRIPT" ? document.currentScript.src : new URL("main.js", document.baseURI).href;
|
|
28
28
|
var importMetaUrl = /* @__PURE__ */ getImportMetaUrl();
|
|
29
29
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "conductor-install",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.2",
|
|
4
4
|
"description": "Conductor spec-driven development CLI - Install Conductor in any project with npx conductor-install",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
@@ -12,6 +12,9 @@
|
|
|
12
12
|
"engines": {
|
|
13
13
|
"node": ">=18"
|
|
14
14
|
},
|
|
15
|
+
"publishConfig": {
|
|
16
|
+
"access": "public"
|
|
17
|
+
},
|
|
15
18
|
"type": "module",
|
|
16
19
|
"bin": {
|
|
17
20
|
"conductor": "./dist/index.js",
|