@graphql-eslint/eslint-plugin 4.4.0-alpha-20241210122018-181d10f9b0a3e9b73e3de466eecce3342d1c5232 → 4.4.0-alpha-20241210123322-201a14b05ca7626b07c4afd5939919c0a3bcda7e
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/cjs/meta.js +1 -1
- package/esm/meta.js +1 -1
- package/package.json +4 -10
- package/programmatic.d.ts +1323 -0
- package/programmatic.js +1 -1
package/cjs/meta.js
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
"use strict";Object.defineProperty(exports, "__esModule", {value: true});const version = "4.4.0-alpha-
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true});const version = "4.4.0-alpha-20241210123322-201a14b05ca7626b07c4afd5939919c0a3bcda7e";
|
2
2
|
|
3
3
|
|
4
4
|
exports.version = version;
|
package/esm/meta.js
CHANGED
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@graphql-eslint/eslint-plugin",
|
3
|
-
"version": "4.4.0-alpha-
|
3
|
+
"version": "4.4.0-alpha-20241210123322-201a14b05ca7626b07c4afd5939919c0a3bcda7e",
|
4
4
|
"type": "module",
|
5
5
|
"description": "GraphQL plugin for ESLint",
|
6
6
|
"repository": "https://github.com/dimaMachina/graphql-eslint",
|
@@ -21,15 +21,9 @@
|
|
21
21
|
"default": "./esm/index.js"
|
22
22
|
}
|
23
23
|
},
|
24
|
-
"
|
25
|
-
"
|
26
|
-
|
27
|
-
"default": "./cjs/*.js"
|
28
|
-
},
|
29
|
-
"import": {
|
30
|
-
"types": "./esm/*.d.ts",
|
31
|
-
"default": "./esm/*.js"
|
32
|
-
}
|
24
|
+
"./programmatic": {
|
25
|
+
"import": "./programmatic.js",
|
26
|
+
"types": "./programmatic.d.ts"
|
33
27
|
}
|
34
28
|
},
|
35
29
|
"types": "esm/index.d.ts",
|