stagent 0.3.3 → 0.3.4
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.js +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -577,7 +577,7 @@ async function main() {
|
|
|
577
577
|
const candidate = join3(searchDir, "node_modules", "next", "package.json");
|
|
578
578
|
if (existsSync2(candidate)) {
|
|
579
579
|
const hoistedRoot = searchDir;
|
|
580
|
-
for (const name of ["src", "public"]) {
|
|
580
|
+
for (const name of ["src", "public", "docs"]) {
|
|
581
581
|
const dest = join3(hoistedRoot, name);
|
|
582
582
|
const src = join3(appDir, name);
|
|
583
583
|
if (!existsSync2(dest) && existsSync2(src)) {
|