@farming-labs/docs 0.0.32 → 0.0.33
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 +2 -2
- package/package.json +1 -1
package/dist/cli/index.mjs
CHANGED
|
@@ -2158,7 +2158,7 @@ async function init(options = {}) {
|
|
|
2158
2158
|
}
|
|
2159
2159
|
const entryPath = entry.trim() || defaultEntry;
|
|
2160
2160
|
const enableI18n = await p.confirm({
|
|
2161
|
-
message: "Do you want to scaffold internationalized docs
|
|
2161
|
+
message: "Do you want to scaffold internationalized docs ?",
|
|
2162
2162
|
initialValue: false
|
|
2163
2163
|
});
|
|
2164
2164
|
if (p.isCancel(enableI18n)) {
|
|
@@ -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?",
|