t3code-cli 0.1.0 → 0.1.2
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.js +1 -1
- package/package.json +2 -3
package/dist/bin.js
CHANGED
|
@@ -17822,7 +17822,7 @@ var T3Version = class extends Service()("t3cli/T3Version") {};
|
|
|
17822
17822
|
//#endregion
|
|
17823
17823
|
//#region src/version/layer.ts
|
|
17824
17824
|
const PackageJsonSchema = fromJsonString(Struct({ version: String$1 }));
|
|
17825
|
-
const T3VersionBundledLive = sync$2(T3Version, () => ({ version: "0.1.
|
|
17825
|
+
const T3VersionBundledLive = sync$2(T3Version, () => ({ version: "0.1.2" }));
|
|
17826
17826
|
effect(T3Version, gen(function* () {
|
|
17827
17827
|
const packageJson = yield* (yield* FileSystem).readFileString(fileURLToPath(new URL("../../package.json", import.meta.url)));
|
|
17828
17828
|
return { version: (yield* decodeUnknownEffect(PackageJsonSchema)(packageJson)).version };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "t3code-cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "CLI for t3code",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"claude",
|
|
@@ -52,8 +52,7 @@
|
|
|
52
52
|
"lint:fix": "vp lint --fix",
|
|
53
53
|
"changeset": "changeset",
|
|
54
54
|
"release:check": "pnpm check && pnpm typecheck && pnpm pack --dry-run",
|
|
55
|
-
"release:publish": "
|
|
56
|
-
"release:publish:dry-run": "pnpm publish --access public --dry-run --no-git-checks",
|
|
55
|
+
"release:publish": "changeset publish",
|
|
57
56
|
"typecheck": "tsc --noEmit"
|
|
58
57
|
}
|
|
59
58
|
}
|