@c4a/extract-ts 0.5.41-beta.5 → 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.
- package/index.js +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 {
|
|
13969
|
+
import { execFile } from "node:child_process";
|
|
13970
13970
|
import { promisify } from "node:util";
|
|
13971
|
-
var
|
|
13971
|
+
var execFileAsync = promisify(execFile);
|
|
13972
13972
|
var SUPPORTED_EXTENSIONS = new Set([".ts", ".tsx"]);
|
|
13973
13973
|
var MANIFEST_FILES = [
|
|
13974
13974
|
"package.json",
|