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

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.11 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
@@ -10,4 +10,4 @@
10
10
  ℹ dist/index.mjs 16.92 kB │ gzip: 4.89 kB
11
11
  ℹ dist/index.d.mts  7.34 kB │ gzip: 2.42 kB
12
12
  ℹ 2 files, total: 24.26 kB
13
- ✔ Build complete in 1774ms
13
+ ✔ Build complete in 1658ms
@@ -1,5 +1,11 @@
1
1
  # @infra-x/eslint-config
2
2
 
3
+ ## 0.1.11
4
+
5
+ ### Patch Changes
6
+
7
+ - ce4df19: fix tailwind entryPoint default filename
8
+
3
9
  ## 0.1.10
4
10
 
5
11
  ### Patch Changes
@@ -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(
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.4",
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.11",
33
33
  "@infra-x/typescript-config": "0.1.6"
34
34
  },
35
35
  "exports": {