@infra-x/create-eslint-config 0.2.4 → 0.2.6

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,5 +1,5 @@
1
1
 
2
- > @infra-x/eslint-config@0.1.11 build /home/runner/work/infra-code/infra-code/packages/eslint-config
2
+ > @infra-x/eslint-config@0.1.13 build /home/runner/work/infra-code/infra-code/packages/eslint-config
3
3
  > tsdown
4
4
 
5
5
  ℹ tsdown v0.21.4 powered by rolldown v1.0.0-rc.9
@@ -7,7 +7,7 @@
7
7
  ℹ entry: src/index.ts
8
8
  ℹ tsconfig: tsconfig.json
9
9
  ℹ Build start
10
- ℹ dist/index.mjs 16.92 kB │ gzip: 4.89 kB
10
+ ℹ dist/index.mjs 16.93 kB │ gzip: 4.90 kB
11
11
  ℹ dist/index.d.mts  7.34 kB │ gzip: 2.42 kB
12
- ℹ 2 files, total: 24.26 kB
13
- ✔ Build complete in 1658ms
12
+ ℹ 2 files, total: 24.27 kB
13
+ ✔ Build complete in 1863ms
@@ -1,5 +1,17 @@
1
1
  # @infra-x/eslint-config
2
2
 
3
+ ## 0.1.13
4
+
5
+ ### Patch Changes
6
+
7
+ - up boundaries
8
+
9
+ ## 0.1.12
10
+
11
+ ### Patch Changes
12
+
13
+ - up config
14
+
3
15
  ## 0.1.11
4
16
 
5
17
  ### Patch Changes
@@ -32,14 +32,14 @@
32
32
  "dependencies": {
33
33
  "@eslint-react/eslint-plugin": "^2.13.0",
34
34
  "@eslint/compat": "2.0.3",
35
- "@eslint/core": "0.17.0",
35
+ "@eslint/core": "1.1.1",
36
36
  "@eslint/js": "^10.0.1",
37
37
  "@next/eslint-plugin-next": "^16.1.6",
38
38
  "@stylistic/eslint-plugin": "^5.9.0",
39
39
  "@vitest/eslint-plugin": "^1.6.9",
40
40
  "eslint-import-resolver-typescript": "^4.4.4",
41
41
  "eslint-plugin-better-tailwindcss": "^4.3.1",
42
- "eslint-plugin-boundaries": "^5.4.0",
42
+ "eslint-plugin-boundaries": "^6.0.0",
43
43
  "eslint-plugin-depend": "^1.5.0",
44
44
  "eslint-plugin-import-x": "4.16.2",
45
45
  "eslint-plugin-jsdoc": "^62.7.1",
@@ -47,7 +47,7 @@
47
47
  "eslint-plugin-package-json": "^0.91.0",
48
48
  "eslint-plugin-react-hooks": "^7.0.1",
49
49
  "eslint-plugin-react-refresh": "^0.5.2",
50
- "eslint-plugin-oxlint": "^0.18.0",
50
+ "eslint-plugin-oxlint": "^1.0.0",
51
51
  "eslint-plugin-storybook": "^10.2.14",
52
52
  "eslint-plugin-unicorn": "^63.0.0",
53
53
  "typescript-eslint": "^8.56.1"
@@ -25,7 +25,7 @@ export function boundaries(options: BoundariesOptions = {}): Linter.Config[] {
25
25
  'boundaries/elements': elements,
26
26
  },
27
27
  rules: {
28
- 'boundaries/element-types': [
28
+ 'boundaries/dependencies': [
29
29
  'error',
30
30
  {
31
31
  default: 'disallow',
@@ -11,7 +11,7 @@ import type { Linter } from 'eslint'
11
11
  const DEFAULT_PRESETS: DependOptions['presets'] = ['native', 'microutilities', 'preferred']
12
12
 
13
13
  export function depend(options: DependOptions = {}): Linter.Config[] {
14
- const { presets = DEFAULT_PRESETS, modules = [], allowed = [], overrides = {} } = options
14
+ const { presets = DEFAULT_PRESETS, modules = [], allowed = ['dotenv'], overrides = {} } = options
15
15
 
16
16
  return [
17
17
  {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@infra-x/create-eslint-config",
3
3
  "type": "module",
4
- "version": "0.2.4",
4
+ "version": "0.2.6",
5
5
  "description": "CLI to copy ESLint config source into a monorepo.",
6
6
  "author": "infra-x",
7
7
  "license": "MIT",
@@ -29,7 +29,7 @@
29
29
  "eslint": "^10.0.2",
30
30
  "tsdown": "^0.21.0",
31
31
  "typescript": "^5.9.3",
32
- "@infra-x/eslint-config": "0.1.11",
32
+ "@infra-x/eslint-config": "0.1.13",
33
33
  "@infra-x/typescript-config": "0.1.6"
34
34
  },
35
35
  "exports": {