@xylabs/ts-scripts-yarn3 4.0.0-rc.7 → 4.0.0-rc.9
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 +15 -9
- 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/actions/recompile.mjs +14 -1
- package/dist/actions/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/bin/xy-ts.mjs +14 -1
- package/dist/bin/xy-ts.mjs.map +1 -1
- package/dist/bin/xy.mjs +14 -1
- package/dist/bin/xy.mjs.map +1 -1
- package/dist/index.mjs +15 -9
- package/dist/index.mjs.map +1 -1
- package/dist/xy/index.mjs +14 -1
- package/dist/xy/index.mjs.map +1 -1
- package/dist/xy/xy.mjs +14 -1
- package/dist/xy/xy.mjs.map +1 -1
- package/dist/xy/xyBuildCommands.mjs +14 -1
- package/dist/xy/xyBuildCommands.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/src/actions/recompile.ts +2 -1
package/dist/index.mjs
CHANGED
|
@@ -1474,7 +1474,6 @@ var packageCompileTsc = /* @__PURE__ */ __name(async (noEmit, config2, compilerO
|
|
|
1474
1474
|
}, "packageCompileTsc");
|
|
1475
1475
|
|
|
1476
1476
|
// src/actions/package/compile/packageCompileTsup.ts
|
|
1477
|
-
import svgrPlugin from "esbuild-plugin-svgr";
|
|
1478
1477
|
import { build as build2, defineConfig } from "tsup";
|
|
1479
1478
|
|
|
1480
1479
|
// src/actions/package/compile/inputs.ts
|
|
@@ -1531,9 +1530,6 @@ var compileFolder = /* @__PURE__ */ __name(async (folder, entryMode = "single",
|
|
|
1531
1530
|
sourcemap: true,
|
|
1532
1531
|
splitting: false,
|
|
1533
1532
|
tsconfig: "tsconfig.json",
|
|
1534
|
-
esbuildPlugins: [
|
|
1535
|
-
svgrPlugin()
|
|
1536
|
-
],
|
|
1537
1533
|
...options
|
|
1538
1534
|
});
|
|
1539
1535
|
const optionsList = (await Promise.all((Array.isArray(optionsResult) ? optionsResult : [
|
|
@@ -1972,10 +1968,7 @@ var runTypeDoc = /* @__PURE__ */ __name(async (app) => {
|
|
|
1972
1968
|
|
|
1973
1969
|
// src/actions/package/recompile.ts
|
|
1974
1970
|
var packageRecompile = /* @__PURE__ */ __name(async () => {
|
|
1975
|
-
return (await
|
|
1976
|
-
packageClean(),
|
|
1977
|
-
packageCompile()
|
|
1978
|
-
])).reduce((prev, value) => prev + value, 0);
|
|
1971
|
+
return await packageClean() || await packageCompile();
|
|
1979
1972
|
}, "packageRecompile");
|
|
1980
1973
|
|
|
1981
1974
|
// src/actions/publint.ts
|
|
@@ -2109,7 +2102,20 @@ var recompileAll = /* @__PURE__ */ __name(async ({ jobs, verbose, target, increm
|
|
|
2109
2102
|
...jobsOptions,
|
|
2110
2103
|
...verboseOptions,
|
|
2111
2104
|
"run",
|
|
2112
|
-
"package-
|
|
2105
|
+
"package-clean",
|
|
2106
|
+
...targetOptions
|
|
2107
|
+
]
|
|
2108
|
+
],
|
|
2109
|
+
[
|
|
2110
|
+
"yarn",
|
|
2111
|
+
[
|
|
2112
|
+
"workspaces",
|
|
2113
|
+
"foreach",
|
|
2114
|
+
...incrementalOptions,
|
|
2115
|
+
...jobsOptions,
|
|
2116
|
+
...verboseOptions,
|
|
2117
|
+
"run",
|
|
2118
|
+
"package-compile",
|
|
2113
2119
|
...targetOptions
|
|
2114
2120
|
]
|
|
2115
2121
|
]
|