sprint-es 0.0.128 → 0.0.130
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/cjs/cli.cjs +1 -1
- package/dist/esm/cli.js +1 -1
- package/package.json +1 -1
package/dist/cjs/cli.cjs
CHANGED
|
@@ -414,7 +414,7 @@ async function main() {
|
|
|
414
414
|
if (isTS) {
|
|
415
415
|
console.log("[Sprint] Compiling sprint.config.ts...");
|
|
416
416
|
await runCommand(
|
|
417
|
-
`tsup sprint.config.ts --outDir "${distPath}" --format cjs --tsconfig "${tsconfigPath}"`,
|
|
417
|
+
`tsup sprint.config.ts --outDir "${distPath}" --format cjs --tsconfig "${tsconfigPath}" --clean false`,
|
|
418
418
|
{ NODE_ENV: "production" }
|
|
419
419
|
);
|
|
420
420
|
console.log("[Sprint] sprint.config.js generated ✓");
|
package/dist/esm/cli.js
CHANGED
|
@@ -395,7 +395,7 @@ async function main() {
|
|
|
395
395
|
if (isTS) {
|
|
396
396
|
console.log("[Sprint] Compiling sprint.config.ts...");
|
|
397
397
|
await runCommand(
|
|
398
|
-
`tsup sprint.config.ts --outDir "${distPath}" --format cjs --tsconfig "${tsconfigPath}"`,
|
|
398
|
+
`tsup sprint.config.ts --outDir "${distPath}" --format cjs --tsconfig "${tsconfigPath}" --clean false`,
|
|
399
399
|
{ NODE_ENV: "production" }
|
|
400
400
|
);
|
|
401
401
|
console.log("[Sprint] sprint.config.js generated ✓");
|