@dnncommunity/dnn-elements 0.24.4-beta.12 → 0.24.4-beta.13
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.
|
@@ -2,20 +2,17 @@ import type { Linter } from "eslint";
|
|
|
2
2
|
import type { RuleModule } from "@typescript-eslint/utils/ts-eslint";
|
|
3
3
|
import type { FlatConfig } from "@typescript-eslint/utils/ts-eslint";
|
|
4
4
|
type RulesRecord = Record<string, RuleModule<string, readonly unknown[]>>;
|
|
5
|
-
type FlatConfigs = {
|
|
6
|
-
flat?: {
|
|
7
|
-
recommended?: FlatConfig.Config[];
|
|
8
|
-
[key: string]: FlatConfig.Config[] | undefined;
|
|
9
|
-
};
|
|
10
|
-
};
|
|
11
5
|
export type Plugin = {
|
|
12
|
-
meta
|
|
6
|
+
meta: {
|
|
13
7
|
name: string;
|
|
14
8
|
version: string;
|
|
15
9
|
};
|
|
16
10
|
rules: RulesRecord;
|
|
17
|
-
configs
|
|
18
|
-
recommended
|
|
19
|
-
|
|
11
|
+
configs: {
|
|
12
|
+
recommended: Linter.Config;
|
|
13
|
+
flat: {
|
|
14
|
+
recommended: FlatConfig.Config[];
|
|
15
|
+
};
|
|
16
|
+
};
|
|
20
17
|
};
|
|
21
18
|
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plugin.js","sourceRoot":"","sources":["../../src/types/plugin.ts"],"names":[],"mappings":"","sourcesContent":["import type { Linter } from \"eslint\";\r\nimport type { RuleModule } from \"@typescript-eslint/utils/ts-eslint\";\r\nimport type { FlatConfig } from \"@typescript-eslint/utils/ts-eslint\";\r\n\r\ntype RulesRecord = Record<string, RuleModule<string, readonly unknown[]>>;\r\n\r\
|
|
1
|
+
{"version":3,"file":"plugin.js","sourceRoot":"","sources":["../../src/types/plugin.ts"],"names":[],"mappings":"","sourcesContent":["import type { Linter } from \"eslint\";\r\nimport type { RuleModule } from \"@typescript-eslint/utils/ts-eslint\";\r\nimport type { FlatConfig } from \"@typescript-eslint/utils/ts-eslint\";\r\n\r\ntype RulesRecord = Record<string, RuleModule<string, readonly unknown[]>>;\r\n\r\nexport type Plugin = {\r\n meta: {\r\n name: string;\r\n version: string;\r\n };\r\n rules: RulesRecord;\r\n configs: {\r\n recommended: Linter.Config;\r\n flat: {\r\n recommended: FlatConfig.Config[];\r\n }\r\n };\r\n};"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dnncommunity/dnn-elements",
|
|
3
|
-
"version": "0.24.4-beta.
|
|
3
|
+
"version": "0.24.4-beta.13",
|
|
4
4
|
"description": "Dnn themed custom elements.",
|
|
5
5
|
"repository": "https://github.com/dnncommunity/dnn-elements",
|
|
6
6
|
"homepage": "https://dnncommunity.github.io/dnn-elements",
|