@ttsc/lint 0.11.0-dev.20260517 → 0.11.0-dev.20260518

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.
@@ -11,9 +11,12 @@ import (
11
11
  "os"
12
12
  )
13
13
 
14
- // Version is the build banner string the `version` subcommand prints. Keep in
15
- // sync with `packages/lint/package.json` on release.
16
- const Version = "0.0.1"
14
+ // Version is the build banner string the `version` subcommand prints.
15
+ // Overridden at link time via
16
+ // `-ldflags "-X github.com/samchon/ttsc/packages/lint/linthost.Version=..."`.
17
+ // Defaults to `"dev"` so local Go builds and `go test` runs print a
18
+ // distinguishable value without depending on the release pipeline.
19
+ var Version = "dev"
17
20
 
18
21
  // Main dispatches the lint plugin subcommands. `args` is the argv tail after
19
22
  // the binary name (i.e. `os.Args[1:]`). The return value is the exit code the
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ttsc/lint",
3
- "version": "0.11.0-dev.20260517",
3
+ "version": "0.11.0-dev.20260518",
4
4
  "description": "Reference ttsc plugin: ESLint-style lint rules hosted in the same Program/Checker as the type-check pass.",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -36,7 +36,7 @@
36
36
  "@typescript/native-preview": "7.0.0-dev.20260515.1",
37
37
  "@types/node": "^25.3.0",
38
38
  "rimraf": "^6.1.2",
39
- "ttsc": "0.11.0-dev.20260517"
39
+ "ttsc": "0.11.0-dev.20260518"
40
40
  },
41
41
  "repository": {
42
42
  "type": "git",