adamantite 0.27.0 → 0.27.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/index.js +3 -7
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -171,7 +171,6 @@ d8( 888 888 888 d8( 888 888 888 888 d8( 888 888 888 888 .
|
|
|
171
171
|
}
|
|
172
172
|
yield* Console.info(title);
|
|
173
173
|
});
|
|
174
|
-
var getPackageVersion = () => readPackageJson().pipe(Effect2.flatMap((packageJson) => packageJson.version ? Effect2.succeed(packageJson.version) : Effect2.fail(new MissingPackageVersion({ path: "package.json" }))));
|
|
175
174
|
|
|
176
175
|
// src/helpers/packages/knip.ts
|
|
177
176
|
var CONFIG_FILE_JSON = "knip.json";
|
|
@@ -1292,9 +1291,6 @@ var update_default = Command8.make("update").pipe(Command8.withDescription("Upda
|
|
|
1292
1291
|
|
|
1293
1292
|
// src/index.ts
|
|
1294
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]));
|
|
1295
|
-
var
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
yield* cli(process5.argv);
|
|
1299
|
-
});
|
|
1300
|
-
program.pipe(Effect19.provide(Layer4.mergeAll(NodeContext.layer, PackageManagerLive, PrompterLive, CwdLive)), NodeRuntime.runMain);
|
|
1294
|
+
var version = await "0.27.1";
|
|
1295
|
+
var program = Command9.run(main, { name: "adamantite", version });
|
|
1296
|
+
program(process5.argv).pipe(Effect19.provide(Layer4.mergeAll(NodeContext.layer, PackageManagerLive, PrompterLive, CwdLive)), NodeRuntime.runMain);
|