@skilbjo/config-rc 1.0.32 → 1.0.33
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/CHANGELOG.md +8 -0
- package/eslint.config.mjs +4 -2
- package/index.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
## [1.0.33](https://github.com/skilbjo/config-rc/compare/v1.0.32...v1.0.33) (2026-01-22)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* fix ([5394e93](https://github.com/skilbjo/config-rc/commit/5394e9325b5c076a0e7fbe1bb52477c8f262a7a4))
|
|
7
|
+
* more tweaks ([722a04f](https://github.com/skilbjo/config-rc/commit/722a04f61c628c3d5606d4ce1168bb9e234b2a2a))
|
|
8
|
+
|
|
1
9
|
## [1.0.32](https://github.com/skilbjo/config-rc/compare/v1.0.31...v1.0.32) (2026-01-22)
|
|
2
10
|
|
|
3
11
|
|
package/eslint.config.mjs
CHANGED
package/index.js
CHANGED
|
@@ -9,7 +9,7 @@ const securityPlugin = require('eslint-plugin-security');
|
|
|
9
9
|
const perfectionistPlugin = require('eslint-plugin-perfectionist');
|
|
10
10
|
const globals = require('globals');
|
|
11
11
|
|
|
12
|
-
const
|
|
12
|
+
const config = tseslint.config(
|
|
13
13
|
{
|
|
14
14
|
ignores: ['target/**', 'node_modules/**', '.git/**'],
|
|
15
15
|
},
|
|
@@ -120,4 +120,4 @@ const baseConfig = tseslint.config(
|
|
|
120
120
|
},
|
|
121
121
|
}
|
|
122
122
|
);
|
|
123
|
-
module.exports = {
|
|
123
|
+
module.exports = { config };
|