@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 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; // Path to the file from the module root
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` - Path to the file from the module root.
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@apm-js-collab/code-transformer",
3
- "version": "0.9.0",
3
+ "version": "0.10.0",
4
4
  "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",