@farming-labs/docs 0.0.31 → 0.0.33-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.
- package/dist/cli/index.mjs +1 -1
- package/package.json +1 -1
package/dist/cli/index.mjs
CHANGED
|
@@ -2280,7 +2280,7 @@ async function init(options = {}) {
|
|
|
2280
2280
|
if (written.length > 0) p.log.success(`Created ${written.length} file${written.length > 1 ? "s" : ""}:\n` + written.map((f) => ` ${pc.green("+")} ${f}`).join("\n"));
|
|
2281
2281
|
if (skipped.length > 0) p.log.info(`Skipped ${skipped.length} existing file${skipped.length > 1 ? "s" : ""}:\n` + skipped.map((f) => ` ${pc.dim("-")} ${f}`).join("\n"));
|
|
2282
2282
|
let pm = detectPackageManagerFromLockfile(cwd);
|
|
2283
|
-
if (pm) p.log.info(`Detected ${pc.cyan(pm)}
|
|
2283
|
+
if (pm) p.log.info(`Detected ${pc.cyan(pm)}`);
|
|
2284
2284
|
const pmAnswerExisting = await p.select({
|
|
2285
2285
|
...pm ? { initialValue: pm } : {},
|
|
2286
2286
|
message: "Which package manager do you want to use in this project?",
|