@infra-x/create-eslint-config 0.2.3 → 0.2.5

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.10 build /home/runner/work/infra-code/infra-code/packages/eslint-config
2
+ > @infra-x/eslint-config@0.1.12 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 1774ms
12
+ ℹ 2 files, total: 24.27 kB
13
+ ✔ Build complete in 1976ms
@@ -1,5 +1,17 @@
1
1
  # @infra-x/eslint-config
2
2
 
3
+ ## 0.1.12
4
+
5
+ ### Patch Changes
6
+
7
+ - up config
8
+
9
+ ## 0.1.11
10
+
11
+ ### Patch Changes
12
+
13
+ - ce4df19: fix tailwind entryPoint default filename
14
+
3
15
  ## 0.1.10
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"
@@ -13,7 +13,7 @@ import type { Linter } from 'eslint'
13
13
  * Tailwind CSS rule configuration
14
14
  */
15
15
  export function tailwind(options: TailwindOptions = {}): Linter.Config[] {
16
- const { files = [GLOB_JSX], overrides = {}, entryPoint = 'src/styles/global.css', rootFontSize } = options
16
+ const { files = [GLOB_JSX], overrides = {}, entryPoint = 'src/styles/globals.css', rootFontSize } = options
17
17
 
18
18
  if (rootFontSize === undefined) {
19
19
  console.warn(
@@ -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.3",
4
+ "version": "0.2.5",
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.10",
32
+ "@infra-x/eslint-config": "0.1.12",
33
33
  "@infra-x/typescript-config": "0.1.6"
34
34
  },
35
35
  "exports": {