dlzn-ui 1.26.0 → 1.27.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.
@@ -1,3 +1,3 @@
1
1
  import { Linter } from 'eslint';
2
- declare const eslintConfig: Promise<Linter.Config[]>;
2
+ declare const eslintConfig: Linter.Config[];
3
3
  export default eslintConfig;
@@ -3,7 +3,8 @@ import antfu, { perfectionist } from "@antfu/eslint-config";
3
3
  import perfectionist$1 from "eslint-plugin-perfectionist";
4
4
  import eslintPluginPrettierRecommended from "eslint-plugin-prettier/recommended";
5
5
  //#region node/eslint-config.ts
6
- var eslintConfig = perfectionist({}).then((perfectionistConfig) => antfu({
6
+ var perfectionistConfig = await perfectionist({});
7
+ var eslintConfig = await antfu({
7
8
  formatters: {
8
9
  css: true,
9
10
  html: true,
@@ -191,6 +192,6 @@ var eslintConfig = perfectionist({}).then((perfectionistConfig) => antfu({
191
192
  "**/*.jsonc"
192
193
  ],
193
194
  ...eslintPluginPrettierRecommended
194
- }));
195
+ });
195
196
  //#endregion
196
197
  export { eslintConfig as default };
package/package.json CHANGED
@@ -75,6 +75,6 @@
75
75
  "**/*.css"
76
76
  ],
77
77
  "type": "module",
78
- "version": "1.26.0",
78
+ "version": "1.27.0",
79
79
  "scripts": {}
80
80
  }