@jsse/eslint-config 0.4.27 → 0.4.29
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/CHANGELOG.md +12 -0
- package/dist/cli.js +5 -5
- package/dist/index.d.ts +732 -1633
- package/dist/index.js +2226 -2196
- package/dist/{version-UD6aSD5j.js → version-DP4PvhDn.js} +1 -1
- package/package.json +22 -22
- /package/dist/{chunk-VnP9fmST.js → chunk-B7RtqpM4.js} +0 -0
package/CHANGELOG.md
CHANGED
package/dist/cli.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { n as DEBUG$1, t as VERSION } from "./version-
|
|
1
|
+
import { n as DEBUG$1, t as VERSION } from "./version-DP4PvhDn.js";
|
|
2
2
|
import process$1 from "node:process";
|
|
3
3
|
import fs from "node:fs";
|
|
4
4
|
import { EventEmitter } from "events";
|
|
@@ -236,11 +236,11 @@ var Option = class {
|
|
|
236
236
|
const processArgs = process.argv;
|
|
237
237
|
const platformInfo = `${process.platform}-${process.arch} node-${process.version}`;
|
|
238
238
|
var Command = class {
|
|
239
|
-
constructor(rawName, description, config = {}, cli
|
|
239
|
+
constructor(rawName, description, config = {}, cli) {
|
|
240
240
|
this.rawName = rawName;
|
|
241
241
|
this.description = description;
|
|
242
242
|
this.config = config;
|
|
243
|
-
this.cli = cli
|
|
243
|
+
this.cli = cli;
|
|
244
244
|
this.options = [];
|
|
245
245
|
this.aliasNames = [];
|
|
246
246
|
this.name = removeBrackets(rawName);
|
|
@@ -388,8 +388,8 @@ ${section.body}` : section.body;
|
|
|
388
388
|
}
|
|
389
389
|
};
|
|
390
390
|
var GlobalCommand = class extends Command {
|
|
391
|
-
constructor(cli
|
|
392
|
-
super("@@global@@", "", {}, cli
|
|
391
|
+
constructor(cli) {
|
|
392
|
+
super("@@global@@", "", {}, cli);
|
|
393
393
|
}
|
|
394
394
|
};
|
|
395
395
|
var __assign = Object.assign;
|