@w5s/eslint-config-ignore 1.25.0 → 1.26.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/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  //#region src/eslintIgnores.d.ts
2
- interface ESLintIgnoreConfig {
2
+ export interface ESLintIgnoreConfig {
3
3
  /**
4
4
  * The file globs to ignore
5
5
  */
@@ -9,7 +9,7 @@ interface ESLintIgnoreConfig {
9
9
  */
10
10
  name: string;
11
11
  }
12
- interface ESLintIgnoreOptions {
12
+ export interface ESLintIgnoreOptions {
13
13
  /**
14
14
  * Override current working directory
15
15
  */
@@ -50,14 +50,14 @@ interface ESLintIgnoreOptions {
50
50
  *
51
51
  * @param options
52
52
  */
53
- declare function eslintIgnores(options?: ESLintIgnoreOptions): Promise<ESLintIgnoreConfig>;
53
+ export declare function eslintIgnores(options?: ESLintIgnoreOptions): Promise<ESLintIgnoreConfig>;
54
54
  //#endregion
55
55
  //#region src/meta.d.ts
56
- declare const meta: Readonly<{
56
+ export declare const meta: Readonly<{
57
57
  buildNumber: number;
58
58
  name: string;
59
59
  version: string;
60
60
  }>;
61
61
  //#endregion
62
- export { ESLintIgnoreConfig, ESLintIgnoreOptions, type ESLintIgnoreOptions as Options, eslintIgnores as default, eslintIgnores, meta };
62
+ export { type ESLintIgnoreOptions as Options, eslintIgnores as default };
63
63
  //# sourceMappingURL=index.d.ts.map
package/dist/index.js CHANGED
@@ -312,9 +312,9 @@ async function eslintIgnores(options = {}) {
312
312
  //#endregion
313
313
  //#region src/meta.ts
314
314
  const meta = Object.freeze({
315
- buildNumber: 1788368808,
315
+ buildNumber: 1788793943,
316
316
  name: "@w5s/eslint-config-ignore",
317
- version: "1.25.0"
317
+ version: "1.26.0"
318
318
  });
319
319
  //#endregion
320
320
  export { eslintIgnores as default, eslintIgnores, meta };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@w5s/eslint-config-ignore",
3
- "version": "1.25.0",
3
+ "version": "1.26.0",
4
4
  "description": "Shared ESLint ignore configuration generator",
5
5
  "keywords": [
6
6
  "eslint",
@@ -59,5 +59,5 @@
59
59
  "publishConfig": {
60
60
  "access": "public"
61
61
  },
62
- "gitHead": "de5aba704f6744ba64973b010a848d2b2150341d"
62
+ "gitHead": "f01e374782fdf338f411115d7e82a0353540282b"
63
63
  }