@xylabs/ts-scripts-yarn3 4.0.0-rc.7 → 4.0.0-rc.8
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/actions/index.mjs +1 -8
- package/dist/actions/index.mjs.map +1 -1
- package/dist/actions/package/compile/compile.mjs +0 -4
- package/dist/actions/package/compile/compile.mjs.map +1 -1
- package/dist/actions/package/compile/index.mjs +0 -4
- package/dist/actions/package/compile/index.mjs.map +1 -1
- package/dist/actions/package/compile/packageCompileTsup.mjs +0 -4
- package/dist/actions/package/compile/packageCompileTsup.mjs.map +1 -1
- package/dist/actions/package/index.mjs +1 -8
- package/dist/actions/package/index.mjs.map +1 -1
- package/dist/actions/package/recompile.mjs +1 -8
- package/dist/actions/package/recompile.mjs.map +1 -1
- package/dist/bin/package/compile-only.mjs +0 -4
- package/dist/bin/package/compile-only.mjs.map +1 -1
- package/dist/bin/package/compile-tsup.mjs +0 -4
- package/dist/bin/package/compile-tsup.mjs.map +1 -1
- package/dist/bin/package/compile.mjs +0 -4
- package/dist/bin/package/compile.mjs.map +1 -1
- package/dist/bin/package/recompile.mjs +1 -8
- package/dist/bin/package/recompile.mjs.map +1 -1
- package/dist/index.mjs +1 -8
- package/dist/index.mjs.map +1 -1
- package/package.json +6 -9
- package/src/actions/package/compile/packageCompileTsup.ts +0 -4
- package/src/actions/package/recompile.ts +1 -1
package/dist/actions/index.mjs
CHANGED
|
@@ -1380,7 +1380,6 @@ var packageCompileTsc = /* @__PURE__ */ __name(async (noEmit, config2, compilerO
|
|
|
1380
1380
|
}, "packageCompileTsc");
|
|
1381
1381
|
|
|
1382
1382
|
// src/actions/package/compile/packageCompileTsup.ts
|
|
1383
|
-
import svgrPlugin from "esbuild-plugin-svgr";
|
|
1384
1383
|
import { build as build2, defineConfig } from "tsup";
|
|
1385
1384
|
|
|
1386
1385
|
// src/actions/package/compile/inputs.ts
|
|
@@ -1437,9 +1436,6 @@ var compileFolder = /* @__PURE__ */ __name(async (folder, entryMode = "single",
|
|
|
1437
1436
|
sourcemap: true,
|
|
1438
1437
|
splitting: false,
|
|
1439
1438
|
tsconfig: "tsconfig.json",
|
|
1440
|
-
esbuildPlugins: [
|
|
1441
|
-
svgrPlugin()
|
|
1442
|
-
],
|
|
1443
1439
|
...options
|
|
1444
1440
|
});
|
|
1445
1441
|
const optionsList = (await Promise.all((Array.isArray(optionsResult) ? optionsResult : [
|
|
@@ -1878,10 +1874,7 @@ var runTypeDoc = /* @__PURE__ */ __name(async (app) => {
|
|
|
1878
1874
|
|
|
1879
1875
|
// src/actions/package/recompile.ts
|
|
1880
1876
|
var packageRecompile = /* @__PURE__ */ __name(async () => {
|
|
1881
|
-
return (await
|
|
1882
|
-
packageClean(),
|
|
1883
|
-
packageCompile()
|
|
1884
|
-
])).reduce((prev, value) => prev + value, 0);
|
|
1877
|
+
return await packageClean() || await packageCompile();
|
|
1885
1878
|
}, "packageRecompile");
|
|
1886
1879
|
|
|
1887
1880
|
// src/actions/publint.ts
|