@teamscale/javascript-instrumenter 0.0.1-beta.5 → 0.0.1-beta.7

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
@@ -74,15 +74,15 @@ the file must contain source-map information, or the source-map file
74
74
  must be placed along with the source file in the same directory.
75
75
 
76
76
  ```
77
- yarn instrument --inplace ./the/path/to/the/file.js
77
+ yarn instrumenter --inplace ./the/path/to/the/file.js
78
78
  ```
79
79
 
80
80
  ```
81
- yarn instrument --inplace ./the/path/to/the/file.js --source-map ./the/path/to/the/source.map
81
+ yarn instrumenter --inplace ./the/path/to/the/file.js --source-map ./the/path/to/the/source.map
82
82
  ```
83
83
 
84
84
  ```
85
- yarn instrument ./the/path/to/the/file.js --to ./the/file/path/to/write/to.js
85
+ yarn instrumenter ./the/path/to/the/file.js --to ./the/file/path/to/write/to.js
86
86
  ```
87
87
 
88
88
  ### Integration with Testing Frameworks
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teamscale/javascript-instrumenter",
3
- "version": "0.0.1-beta.5",
3
+ "version": "0.0.1-beta.7",
4
4
  "description": "Istanbul-based coverage instrumenter with coverage forwarding via WebSockets",
5
5
  "main": "dist/src/main.js",
6
6
  "bin": "dist/src/main.js",
package/dist/src/App.js CHANGED
@@ -63,7 +63,7 @@ class App {
63
63
  });
64
64
  parser.add_argument('-d', '--debug', { action: 'store_true' });
65
65
  parser.add_argument('-o', '--to', {
66
- help: 'Name of the file to write the instrumented version to.'
66
+ help: 'Path (directory or file name) to write the instrumented version to.'
67
67
  });
68
68
  parser.add_argument('-s', '--source-map', {
69
69
  help: 'External location of source-map files to consider.'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teamscale/javascript-instrumenter",
3
- "version": "0.0.1-beta.5",
3
+ "version": "0.0.1-beta.7",
4
4
  "description": "Istanbul-based coverage instrumenter with coverage forwarding via WebSockets",
5
5
  "main": "dist/src/main.js",
6
6
  "bin": "dist/src/main.js",