@apm-js-collab/code-transformer 0.9.0 → 0.10.0
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/README.md +2 -2
- package/package.json +1 -1
- package/pkg/orchestrion_js.js +1 -1
package/README.md
CHANGED
|
@@ -139,7 +139,7 @@ type FunctionQuery =
|
|
|
139
139
|
type ModuleMatcher = {
|
|
140
140
|
name: string; // Module name
|
|
141
141
|
versionRange: string; // Matching semver range
|
|
142
|
-
filePath: string; //
|
|
142
|
+
filePath: string; // Relative Unix-style path to the file from the module root (e.g. "lib/index.js")
|
|
143
143
|
};
|
|
144
144
|
```
|
|
145
145
|
|
|
@@ -177,7 +177,7 @@ matching instrumentation configurations.
|
|
|
177
177
|
|
|
178
178
|
- `module_name` - Name of the module.
|
|
179
179
|
- `version` - Version of the module.
|
|
180
|
-
- `file_path` -
|
|
180
|
+
- `file_path` - Relative Unix-style path to the file from the module root (e.g. `"lib/index.js"`). Windows-style backslash paths are also accepted and will be normalized automatically.
|
|
181
181
|
|
|
182
182
|
```ts
|
|
183
183
|
free(): void;
|