We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bd130ba + 55db1c1 commit ec6198fCopy full SHA for ec6198f
cli.js
@@ -1,6 +1,6 @@
1
#!/usr/bin/env node
2
3
-import { readFileSync } from "fs";
+import { readFileSync } from "node:fs";
4
import { filterApexLogs } from "./index.js";
5
6
const input = readFileSync(0, "utf8");
package.json
@@ -2,7 +2,7 @@
"name": "apex-log-filter",
"version": "0.0.0-development",
"description": "CLI for filtering USER_DEBUG output from Salesforce Anonymous Apex execution logs",
- "main": "index.js",
+ "exports": "./index.js",
"type": "module",
7
"scripts": {
8
"test": "bats *.bats"
0 commit comments