neatlint 1.1.17 → 1.1.19

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/main.js CHANGED
@@ -35,7 +35,7 @@ __export(main_exports, {
35
35
  module.exports = __toCommonJS(main_exports);
36
36
 
37
37
  // src/utils/Neatlint.util.ts
38
- var import_lodash = __toESM(require("lodash"));
38
+ var import_lodash = __toESM(require("lodash.merge"));
39
39
 
40
40
  // src/defaults/NeatlintOptions.default.ts
41
41
  var import_typescript_eslint = __toESM(require("typescript-eslint"));
@@ -128,7 +128,7 @@ var NeatlintOptionsDefault = {
128
128
 
129
129
  // src/utils/Neatlint.util.ts
130
130
  var Neatlint = (options = NeatlintOptionsDefault) => {
131
- options = import_lodash.default.merge({}, NeatlintOptionsDefault, options);
131
+ options = (0, import_lodash.default)({}, NeatlintOptionsDefault, options);
132
132
  return [
133
133
  { ignores: options.ignores },
134
134
  {
package/dist/main.mjs CHANGED
@@ -1,5 +1,5 @@
1
1
  // src/utils/Neatlint.util.ts
2
- import _ from "lodash";
2
+ import merge from "lodash.merge";
3
3
 
4
4
  // src/defaults/NeatlintOptions.default.ts
5
5
  import TSESLint from "typescript-eslint";
@@ -92,7 +92,7 @@ var NeatlintOptionsDefault = {
92
92
 
93
93
  // src/utils/Neatlint.util.ts
94
94
  var Neatlint = (options = NeatlintOptionsDefault) => {
95
- options = _.merge({}, NeatlintOptionsDefault, options);
95
+ options = merge({}, NeatlintOptionsDefault, options);
96
96
  return [
97
97
  { ignores: options.ignores },
98
98
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "neatlint",
3
- "version": "1.1.17",
3
+ "version": "1.1.19",
4
4
  "description": "Strict ESLint presets for modern TypeScript projects.",
5
5
  "license": "MIT",
6
6
  "homepage": "https://github.com/keift/neatlint",
@@ -15,13 +15,13 @@
15
15
  "lint": "eslint ./"
16
16
  },
17
17
  "dependencies": {
18
- "@eslint/js": "^9.36.0",
19
- "@types/lodash": "^4.17.20",
20
- "eslint": "^9.36.0",
18
+ "@eslint/js": "^9.37.0",
19
+ "@types/lodash.merge": "^4.6.9",
20
+ "eslint": "^9.37.0",
21
21
  "jiti": "^2.6.1",
22
- "lodash": "^4.17.21",
22
+ "lodash.merge": "^4.6.2",
23
23
  "typescript": "^5.9.3",
24
- "typescript-eslint": "^8.45.0"
24
+ "typescript-eslint": "^8.46.0"
25
25
  },
26
26
  "devDependencies": {
27
27
  "prettier": "^3.6.2",