eslint-config-heck 2.4.1 → 2.4.3

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,6 +1,6 @@
1
1
  /* eslint-disable strict */
2
2
 
3
- const node = require("./nodeWithBiome");
3
+ const node = require("./nodeWithBiome.cjs");
4
4
 
5
5
  const env = {
6
6
  ...node.env,
package/package.json CHANGED
@@ -1,11 +1,19 @@
1
1
  {
2
2
  "name": "eslint-config-heck",
3
- "version": "2.4.1",
3
+ "version": "2.4.3",
4
4
  "description": "Contains an ESLint configuration for ES2015+, TypeScript, and React.",
5
5
  "type": "module",
6
6
  "main": "index.js",
7
7
  "exports": {
8
- "./biome": "./biomeLinting.json"
8
+ "./biome": "./biomeLinting.json",
9
+ "./browser": "./browser.cjs",
10
+ "./browserWithBiome": "./browserWithBiome.cjs",
11
+ "./node": "./node.cjs",
12
+ "./nodeWithBiome": "./nodeWithBiome.cjs",
13
+ "./complexity": "./complexity.cjs",
14
+ "./groupImports": "./groupImports.cjs",
15
+ "./noFormatting": "./noFormatting.cjs",
16
+ "./reactNative": "./reactNative.cjs"
9
17
  },
10
18
  "scripts": {
11
19
  "update": "npx -y npm-check-updates -i --install always",
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes