@jsse/eslint-config 0.3.0 → 0.3.2

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.3.2
4
+
5
+ ### Patch Changes
6
+
7
+ - fix cli install
8
+
9
+ ## 0.3.1
10
+
11
+ ### Patch Changes
12
+
13
+ - update deps
14
+
3
15
  ## 0.3.0
4
16
 
5
17
  ### Minor Changes
package/dist/cli.js CHANGED
@@ -588,7 +588,7 @@ var CAC = class extends EventEmitter {
588
588
  var cac = (name = "") => new CAC(name);
589
589
 
590
590
  // src/generated/version.ts
591
- var VERSION = "0.3.0";
591
+ var VERSION = "0.3.2";
592
592
 
593
593
  // src/cli.ts
594
594
  var cli = cac("jsselint");
@@ -1 +1 @@
1
- export declare const VERSION = "0.3.0";
1
+ export declare const VERSION = "0.3.2";
@@ -1 +1 @@
1
- export const VERSION = "0.3.0";
1
+ export const VERSION = "0.3.2";
@@ -292,7 +292,7 @@ export declare function importPluginReact(): Promise<{
292
292
  };
293
293
  }>;
294
294
  export declare function importPluginReactHooks(): Promise<{
295
- pluginReactHooks: any;
295
+ pluginReactHooks: typeof import("eslint-plugin-react-hooks");
296
296
  }>;
297
297
  export declare function importPluginReactRefresh(): Promise<{
298
298
  pluginReactRefresh: {
@@ -589,7 +589,7 @@ export declare function importReactPlugins(): Promise<{
589
589
  flat: Record<string, import("eslint-plugin-react").ReactFlatConfig>;
590
590
  };
591
591
  };
592
- pluginReactHooks: any;
592
+ pluginReactHooks: typeof import("eslint-plugin-react-hooks");
593
593
  pluginReactRefresh: {
594
594
  rules: Record<string, any>;
595
595
  configs: {
@@ -27,9 +27,7 @@ export async function importPluginReact() {
27
27
  };
28
28
  }
29
29
  export async function importPluginReactHooks() {
30
- const pluginReactHooks = await interopDefault(
31
- // @ts-expect-error - bad types
32
- import("eslint-plugin-react-hooks"));
30
+ const pluginReactHooks = await interopDefault(import("eslint-plugin-react-hooks"));
33
31
  return {
34
32
  pluginReactHooks,
35
33
  };
@@ -43,7 +41,6 @@ export async function importPluginReactRefresh() {
43
41
  export async function importReactPlugins() {
44
42
  const [pluginReact, pluginReactHooks, pluginReactRefresh] = await Promise.all([
45
43
  interopDefault(import("eslint-plugin-react")),
46
- // @ts-expect-error - bad types
47
44
  interopDefault(import("eslint-plugin-react-hooks")),
48
45
  interopDefault(import("eslint-plugin-react-refresh")),
49
46
  ]);