adamantite 0.27.2 → 0.27.4
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/index.js +8 -8
- package/package.json +19 -16
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.
|
|
219
|
+
version: "5.82.1"
|
|
220
220
|
};
|
|
221
221
|
|
|
222
222
|
// src/services/package-manager.ts
|
|
@@ -376,11 +376,11 @@ var oxlint = {
|
|
|
376
376
|
yield* fs.writeFileString(configPath, `${JSON.stringify(mergedConfig, null, 2)}
|
|
377
377
|
`).pipe(Effect7.mapError((cause) => new FailedToWriteFile({ cause, path: configPath })));
|
|
378
378
|
}),
|
|
379
|
-
version: "1.
|
|
379
|
+
version: "1.41.0"
|
|
380
380
|
};
|
|
381
381
|
var tsgolint = {
|
|
382
382
|
name: "oxlint-tsgolint",
|
|
383
|
-
version: "0.11.
|
|
383
|
+
version: "0.11.1"
|
|
384
384
|
};
|
|
385
385
|
|
|
386
386
|
// src/commands/check.ts
|
|
@@ -521,7 +521,7 @@ var oxfmt = {
|
|
|
521
521
|
yield* fs.writeFileString(configPath, `${JSON.stringify(mergedConfig, null, 2)}
|
|
522
522
|
`).pipe(Effect10.mapError((cause) => new FailedToWriteFile({ cause, path: configPath })));
|
|
523
523
|
}),
|
|
524
|
-
version: "0.
|
|
524
|
+
version: "0.26.0"
|
|
525
525
|
};
|
|
526
526
|
|
|
527
527
|
// src/commands/format.ts
|
|
@@ -802,7 +802,7 @@ var vscode = {
|
|
|
802
802
|
// src/helpers/packages/sherif.ts
|
|
803
803
|
var sherif = {
|
|
804
804
|
name: "sherif",
|
|
805
|
-
version: "1.
|
|
805
|
+
version: "1.10.0"
|
|
806
806
|
};
|
|
807
807
|
|
|
808
808
|
// src/helpers/packages/typescript.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.
|
|
842
|
+
version: "7.0.0-dev.20260124.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.
|
|
1294
|
+
var version = await "0.27.4";
|
|
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.
|
|
3
|
+
"version": "0.27.4",
|
|
4
4
|
"description": "An strict and opinionated set of presets for modern TypeScript applications",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"adamantite",
|
|
@@ -61,26 +61,29 @@
|
|
|
61
61
|
},
|
|
62
62
|
"dependencies": {
|
|
63
63
|
"@clack/prompts": "1.0.0-alpha.9",
|
|
64
|
-
"@effect/cli": "0.73.
|
|
65
|
-
"@effect/platform": "0.94.
|
|
66
|
-
"@effect/platform-node": "0.104.
|
|
64
|
+
"@effect/cli": "0.73.1",
|
|
65
|
+
"@effect/platform": "0.94.2",
|
|
66
|
+
"@effect/platform-node": "0.104.1",
|
|
67
67
|
"defu": "6.1.4",
|
|
68
|
-
"effect": "3.19.
|
|
68
|
+
"effect": "3.19.15",
|
|
69
69
|
"jsonc-parser": "3.3.1",
|
|
70
|
-
"nypm": "0.6.
|
|
70
|
+
"nypm": "0.6.4"
|
|
71
71
|
},
|
|
72
72
|
"devDependencies": {
|
|
73
73
|
"@changesets/cli": "2.29.8",
|
|
74
|
-
"@types/bun": "1.3.
|
|
75
|
-
"@typescript/native-preview": "7.0.0-dev.
|
|
76
|
-
"bunup": "0.16.
|
|
77
|
-
"knip": "5.
|
|
78
|
-
"oxfmt": "0.
|
|
79
|
-
"oxlint": "1.
|
|
80
|
-
"oxlint-tsgolint": "0.11.
|
|
81
|
-
"sherif": "1.
|
|
82
|
-
"type-fest": "5.4.
|
|
74
|
+
"@types/bun": "1.3.6",
|
|
75
|
+
"@typescript/native-preview": "7.0.0-dev.20260124.1",
|
|
76
|
+
"bunup": "0.16.20",
|
|
77
|
+
"knip": "5.82.1",
|
|
78
|
+
"oxfmt": "0.26.0",
|
|
79
|
+
"oxlint": "1.41.0",
|
|
80
|
+
"oxlint-tsgolint": "0.11.1",
|
|
81
|
+
"sherif": "1.10.0",
|
|
82
|
+
"type-fest": "5.4.1",
|
|
83
83
|
"typescript": "5.9.3"
|
|
84
84
|
},
|
|
85
|
-
"
|
|
85
|
+
"engines": {
|
|
86
|
+
"bun": ">=1.3.6"
|
|
87
|
+
},
|
|
88
|
+
"packageManager": "bun@1.3.6"
|
|
86
89
|
}
|