@jsse/eslint-config 0.4.28 → 0.4.30

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 CHANGED
@@ -1,5 +1,17 @@
1
1
  # @jsse/eslint-config
2
2
 
3
+ ## 0.4.30
4
+
5
+ ### Patch Changes
6
+
7
+ - update versions
8
+
9
+ ## 0.4.29
10
+
11
+ ### Patch Changes
12
+
13
+ - update dependencies
14
+
3
15
  ## 0.4.28
4
16
 
5
17
  ### Patch Changes
package/dist/cli.js CHANGED
@@ -1,4 +1,4 @@
1
- import { n as DEBUG$1, t as VERSION } from "./version-BzlliPF3.js";
1
+ import { n as DEBUG$1, t as VERSION } from "./version-C783EB_5.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$1) {
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$1;
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$1) {
392
- super("@@global@@", "", {}, cli$1);
391
+ constructor(cli) {
392
+ super("@@global@@", "", {}, cli);
393
393
  }
394
394
  };
395
395
  var __assign = Object.assign;