adamantite 0.27.2 → 0.27.3

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.
Files changed (2) hide show
  1. package/dist/index.js +5 -5
  2. package/package.json +11 -8
package/dist/index.js CHANGED
@@ -216,7 +216,7 @@ var knip = {
216
216
  yield* fs.writeFileString(configPath, `${JSON.stringify(mergedConfig, null, 2)}
217
217
  `).pipe(Effect3.mapError((cause) => new FailedToWriteFile({ cause, path: configPath })));
218
218
  }),
219
- version: "5.80.2"
219
+ version: "5.81.0"
220
220
  };
221
221
 
222
222
  // src/services/package-manager.ts
@@ -380,7 +380,7 @@ var oxlint = {
380
380
  };
381
381
  var tsgolint = {
382
382
  name: "oxlint-tsgolint",
383
- version: "0.11.0"
383
+ version: "0.11.1"
384
384
  };
385
385
 
386
386
  // src/commands/check.ts
@@ -839,7 +839,7 @@ var typescript = {
839
839
  yield* fs.writeFileString(configPath, `${JSON.stringify(newConfig, null, 2)}
840
840
  `).pipe(Effect14.mapError((cause) => new FailedToWriteFile({ cause, path: configPath })));
841
841
  }),
842
- version: "7.0.0-dev.20260112.1"
842
+ version: "7.0.0-dev.20260115.1"
843
843
  };
844
844
 
845
845
  // src/commands/init.ts
@@ -1193,7 +1193,7 @@ var monorepo_default = Command6.make("monorepo", { fix: fix2 }).pipe(Command6.wi
1193
1193
  if (fix3) {
1194
1194
  args.push("--fix");
1195
1195
  }
1196
- return yield* ShellCommand7.make(command, ...commandArgs, sherif.name, ...args).pipe(ShellCommand7.stdout("inherit"), ShellCommand7.stderr("inherit"), ShellCommand7.exitCode);
1196
+ return yield* ShellCommand7.make(command, ...commandArgs, sherif.name, ...args).pipe(ShellCommand7.stdin("inherit"), ShellCommand7.stdout("inherit"), ShellCommand7.stderr("inherit"), ShellCommand7.exitCode);
1197
1197
  })));
1198
1198
 
1199
1199
  // src/commands/typecheck.ts
@@ -1291,6 +1291,6 @@ var update_default = Command8.make("update").pipe(Command8.withDescription("Upda
1291
1291
 
1292
1292
  // src/index.ts
1293
1293
  var main = Command9.make("adamantite").pipe(Command9.withDescription("Opinionated preset package for modern TypeScript applications"), Command9.withSubcommands([analyze_default, check_default, fix_default, format_default2, init_default, monorepo_default, typecheck_default, update_default]));
1294
- var version = await "0.27.2";
1294
+ var version = await "0.27.3";
1295
1295
  var program = Command9.run(main, { name: "adamantite", version });
1296
1296
  program(process5.argv).pipe(Effect19.provide(Layer4.mergeAll(NodeContext.layer, PackageManagerLive, PrompterLive, CwdLive)), NodeRuntime.runMain);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adamantite",
3
- "version": "0.27.2",
3
+ "version": "0.27.3",
4
4
  "description": "An strict and opinionated set of presets for modern TypeScript applications",
5
5
  "keywords": [
6
6
  "adamantite",
@@ -71,16 +71,19 @@
71
71
  },
72
72
  "devDependencies": {
73
73
  "@changesets/cli": "2.29.8",
74
- "@types/bun": "1.3.5",
75
- "@typescript/native-preview": "7.0.0-dev.20260112.1",
76
- "bunup": "0.16.17",
77
- "knip": "5.80.2",
74
+ "@types/bun": "1.3.6",
75
+ "@typescript/native-preview": "7.0.0-dev.20260115.1",
76
+ "bunup": "0.16.20",
77
+ "knip": "5.81.0",
78
78
  "oxfmt": "0.24.0",
79
79
  "oxlint": "1.39.0",
80
- "oxlint-tsgolint": "0.11.0",
80
+ "oxlint-tsgolint": "0.11.1",
81
81
  "sherif": "1.9.0",
82
- "type-fest": "5.4.0",
82
+ "type-fest": "5.4.1",
83
83
  "typescript": "5.9.3"
84
84
  },
85
- "packageManager": "bun@1.3.3"
85
+ "engines": {
86
+ "bun": ">=1.3.6"
87
+ },
88
+ "packageManager": "bun@1.3.6"
86
89
  }