@reliverse/dler 1.7.9 → 1.7.10
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/bin/app/mkdist/cmd.js
CHANGED
|
@@ -89,7 +89,7 @@ export default defineCommand({
|
|
|
89
89
|
},
|
|
90
90
|
dontBuildCopyInstead: {
|
|
91
91
|
type: "string",
|
|
92
|
-
description: "Don't build copy instead of (glob patterns, e.g. '**/*.json') (default: ['**/templates
|
|
92
|
+
description: "Don't build copy instead of (glob patterns, e.g. '**/*.json') (default: ['**/templates'])"
|
|
93
93
|
}
|
|
94
94
|
}),
|
|
95
95
|
async run({ args }) {
|
|
@@ -257,7 +257,7 @@ async function regular_bundleUsingUnified(isCLI, coreEntryFile, outDirBin, build
|
|
|
257
257
|
showOutLog: true,
|
|
258
258
|
transpileStub,
|
|
259
259
|
transpileWatch: transpileWatch ?? false,
|
|
260
|
-
dontBuildCopyInstead: ["**/templates
|
|
260
|
+
dontBuildCopyInstead: ["**/templates"]
|
|
261
261
|
};
|
|
262
262
|
await unifiedBuild(coreEntrySrcDir, isCLI, false, rootDir, unifiedBuildConfig, outDirBin);
|
|
263
263
|
const duration = getElapsedPerfTime(timer);
|