@coko/lint 3.0.0-alpha.19 → 3.0.0-alpha.20

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 CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ## [3.0.0-alpha.20](https://gitlab.coko.foundation/cokoapps/lint/compare/v3.0.0-alpha.19...v3.0.0-alpha.20) (2026-01-26)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * **eslint:** export client config ([5d4df78](https://gitlab.coko.foundation/cokoapps/lint/commit/5d4df78d62005544afc2143e83ca951ddad07c56))
11
+
5
12
  ## [3.0.0-alpha.19](https://gitlab.coko.foundation/cokoapps/lint/compare/v3.0.0-alpha.18...v3.0.0-alpha.19) (2026-01-23)
6
13
 
7
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coko/lint",
3
- "version": "3.0.0-alpha.19",
3
+ "version": "3.0.0-alpha.20",
4
4
  "description": "Linter configurations and dependencies for coko's projects",
5
5
  "keywords": [
6
6
  "lint",
package/src/eslint.mjs CHANGED
@@ -313,5 +313,5 @@ const client = [
313
313
  export {
314
314
  defineConfig as defineEslintConfig,
315
315
  server as serverEslintConfig,
316
- client as createClientConfig,
316
+ client as clientEslintConfig,
317
317
  }
package/src/index.mjs CHANGED
@@ -1,7 +1,12 @@
1
1
  /* eslint-disable-next-line import/extensions */
2
2
  import commitizen from './commitizen.js'
3
3
 
4
- import { defineEslintConfig, serverEslintConfig } from './eslint.mjs'
4
+ import {
5
+ defineEslintConfig,
6
+ serverEslintConfig,
7
+ clientEslintConfig,
8
+ } from './eslint.mjs'
9
+
5
10
  import prettier from './prettier.mjs'
6
11
  import stylelint from './stylelint.mjs'
7
12
  import lintstaged from './lintstaged.mjs'
@@ -9,6 +14,7 @@ import lintstaged from './lintstaged.mjs'
9
14
  export {
10
15
  defineEslintConfig,
11
16
  serverEslintConfig,
17
+ clientEslintConfig,
12
18
  stylelint,
13
19
  prettier,
14
20
  commitizen,