@marko/type-check 2.1.25 → 2.1.27

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/cli.js +2 -2
  2. package/package.json +3 -6
package/dist/cli.js CHANGED
@@ -31,7 +31,7 @@ var import_module = require("module");
31
31
  var import_path2 = __toESM(require("path"));
32
32
 
33
33
  // src/run.ts
34
- var import_code_frame = require("@babel/code-frame");
34
+ var import_babel = require("@marko/compiler/internal/babel");
35
35
  var import_language_tools = require("@marko/language-tools");
36
36
  var import_crypto = __toESM(require("crypto"));
37
37
  var import_kleur = __toESM(require("kleur"));
@@ -504,7 +504,7 @@ function reportRelatedDiagnostics(report, diags) {
504
504
  }
505
505
  }
506
506
  function formatCodeFrameMessage(code, loc, message) {
507
- return (0, import_code_frame.codeFrameColumns)(
507
+ return (0, import_babel.codeFrameColumns)(
508
508
  code,
509
509
  {
510
510
  start: {
package/package.json CHANGED
@@ -1,19 +1,16 @@
1
1
  {
2
2
  "name": "@marko/type-check",
3
3
  "description": "A CLI to type check Marko projects",
4
- "version": "2.1.25",
4
+ "version": "2.1.27",
5
5
  "bugs": "https://github.com/marko-js/language-server/issues/new?template=Bug_report.md",
6
6
  "dependencies": {
7
- "@babel/code-frame": "^7.28.6",
7
+ "@marko/compiler": "^5.39.53",
8
8
  "@luxass/strip-json-comments": "^1.4.0",
9
- "@marko/language-tools": "^2.5.53",
9
+ "@marko/language-tools": "^2.5.55",
10
10
  "arg": "^5.0.2",
11
11
  "kleur": "^4.1.5",
12
12
  "typescript": "^5.9.3"
13
13
  },
14
- "devDependencies": {
15
- "@types/babel__code-frame": "^7.27.0"
16
- },
17
14
  "files": [
18
15
  "dist",
19
16
  "!**/__tests__",