@bensandee/tooling 0.15.0 → 0.16.0
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/CHANGELOG.md +6 -0
- package/README.md +48 -22
- package/dist/bin.mjs +549 -541
- package/dist/docker-verify/index.mjs +1 -1
- package/dist/index.d.mts +0 -2
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { t as isExecSyncError } from "../exec-CC49vrkM.mjs";
|
|
2
|
-
import { execSync } from "node:child_process";
|
|
3
2
|
import { z } from "zod";
|
|
3
|
+
import { execSync } from "node:child_process";
|
|
4
4
|
//#region src/docker-verify/executor.ts
|
|
5
5
|
/** Create an executor that runs real commands, fetches, and manages process signals. */
|
|
6
6
|
function createRealExecutor() {
|
package/dist/index.d.mts
CHANGED
|
@@ -45,8 +45,6 @@ interface ProjectConfig {
|
|
|
45
45
|
projectType: "default" | "node" | "react" | "library";
|
|
46
46
|
/** Auto-detect and configure tsconfig bases for monorepo packages */
|
|
47
47
|
detectPackageTypes: boolean;
|
|
48
|
-
/** Set up Docker image build/tag/push via docker:publish */
|
|
49
|
-
setupDocker: boolean;
|
|
50
48
|
/** Target directory (default: cwd) */
|
|
51
49
|
targetDir: string;
|
|
52
50
|
}
|