@bensandee/tooling 0.25.0 → 0.25.1
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/bin.mjs +6 -6
- package/package.json +2 -2
package/dist/bin.mjs
CHANGED
|
@@ -982,8 +982,8 @@ function addReleaseDeps(deps, config) {
|
|
|
982
982
|
function getAddedDevDepNames(config) {
|
|
983
983
|
const deps = { ...ROOT_DEV_DEPS };
|
|
984
984
|
if (config.structure !== "monorepo") Object.assign(deps, PER_PACKAGE_DEV_DEPS);
|
|
985
|
-
deps["@bensandee/config"] = "0.
|
|
986
|
-
deps["@bensandee/tooling"] = "0.25.
|
|
985
|
+
deps["@bensandee/config"] = "0.9.0";
|
|
986
|
+
deps["@bensandee/tooling"] = "0.25.1";
|
|
987
987
|
if (config.formatter === "oxfmt") deps["oxfmt"] = "0.35.0";
|
|
988
988
|
if (config.formatter === "prettier") deps["prettier"] = "3.8.1";
|
|
989
989
|
addReleaseDeps(deps, config);
|
|
@@ -1007,8 +1007,8 @@ async function generatePackageJson(ctx) {
|
|
|
1007
1007
|
}
|
|
1008
1008
|
const devDeps = { ...ROOT_DEV_DEPS };
|
|
1009
1009
|
if (!isMonorepo) Object.assign(devDeps, PER_PACKAGE_DEV_DEPS);
|
|
1010
|
-
devDeps["@bensandee/config"] = isWorkspacePackage(ctx, "@bensandee/config") ? "workspace:*" : "0.
|
|
1011
|
-
devDeps["@bensandee/tooling"] = isWorkspacePackage(ctx, "@bensandee/tooling") ? "workspace:*" : "0.25.
|
|
1010
|
+
devDeps["@bensandee/config"] = isWorkspacePackage(ctx, "@bensandee/config") ? "workspace:*" : "0.9.0";
|
|
1011
|
+
devDeps["@bensandee/tooling"] = isWorkspacePackage(ctx, "@bensandee/tooling") ? "workspace:*" : "0.25.1";
|
|
1012
1012
|
if (ctx.config.useEslintPlugin) devDeps["@bensandee/eslint-plugin"] = isWorkspacePackage(ctx, "@bensandee/eslint-plugin") ? "workspace:*" : "0.9.2";
|
|
1013
1013
|
if (ctx.config.formatter === "oxfmt") devDeps["oxfmt"] = "0.35.0";
|
|
1014
1014
|
if (ctx.config.formatter === "prettier") devDeps["prettier"] = "3.8.1";
|
|
@@ -4666,7 +4666,7 @@ const dockerCheckCommand = defineCommand({
|
|
|
4666
4666
|
const main = defineCommand({
|
|
4667
4667
|
meta: {
|
|
4668
4668
|
name: "tooling",
|
|
4669
|
-
version: "0.25.
|
|
4669
|
+
version: "0.25.1",
|
|
4670
4670
|
description: "Bootstrap and maintain standardized TypeScript project tooling"
|
|
4671
4671
|
},
|
|
4672
4672
|
subCommands: {
|
|
@@ -4682,7 +4682,7 @@ const main = defineCommand({
|
|
|
4682
4682
|
"docker:check": dockerCheckCommand
|
|
4683
4683
|
}
|
|
4684
4684
|
});
|
|
4685
|
-
console.log(`@bensandee/tooling v0.25.
|
|
4685
|
+
console.log(`@bensandee/tooling v0.25.1`);
|
|
4686
4686
|
async function run() {
|
|
4687
4687
|
await runMain(main);
|
|
4688
4688
|
process.exit(process.exitCode ?? 0);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bensandee/tooling",
|
|
3
|
-
"version": "0.25.
|
|
3
|
+
"version": "0.25.1",
|
|
4
4
|
"description": "CLI tool to bootstrap and maintain standardized TypeScript project tooling",
|
|
5
5
|
"bin": {
|
|
6
6
|
"tooling": "./dist/bin.mjs"
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"tsdown": "0.21.2",
|
|
44
44
|
"typescript": "5.9.3",
|
|
45
45
|
"vitest": "4.0.18",
|
|
46
|
-
"@bensandee/config": "0.
|
|
46
|
+
"@bensandee/config": "0.9.0"
|
|
47
47
|
},
|
|
48
48
|
"optionalDependencies": {
|
|
49
49
|
"@changesets/cli": "^2.29.4",
|