@depctdev/depct 0.1.0 → 0.2.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 +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@ Run Node applications with Depct instrumentation without manually setting `NODE_
|
|
|
5
5
|
## Usage
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
npx @
|
|
8
|
+
npx @depctdev/depct run -- node server.js
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
That command auto-injects `depct-loader` and defaults to verbose diagnostics to match your manual setup:
|
|
@@ -29,6 +29,6 @@ That command auto-injects `depct-loader` and defaults to verbose diagnostics to
|
|
|
29
29
|
Examples:
|
|
30
30
|
|
|
31
31
|
```bash
|
|
32
|
-
npx @
|
|
33
|
-
npx @
|
|
32
|
+
npx @depctdev/depct run --project-id my-api -- node server.js
|
|
33
|
+
npx @depctdev/depct run --no-debug-events -- node server.js
|
|
34
34
|
```
|