@c4a/extract-ts 0.5.41-beta.4 → 0.5.41-beta.6

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/index.js +2 -2
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -13966,9 +13966,9 @@ class ExtractionPluginRegistry {
13966
13966
  }
13967
13967
  }
13968
13968
  // ../extract/src/scanner.ts
13969
- import { exec } from "node:child_process";
13969
+ import { execFile } from "node:child_process";
13970
13970
  import { promisify } from "node:util";
13971
- var execAsync = promisify(exec);
13971
+ var execFileAsync = promisify(execFile);
13972
13972
  var SUPPORTED_EXTENSIONS = new Set([".ts", ".tsx"]);
13973
13973
  var MANIFEST_FILES = [
13974
13974
  "package.json",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@c4a/extract-ts",
3
- "version": "0.5.41-beta.4",
3
+ "version": "0.5.41-beta.6",
4
4
  "type": "module",
5
5
  "dependencies": {
6
6
  "web-tree-sitter": "^0.20.8"