@spark-ui/theme-utils 10.4.2 → 10.4.3

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
@@ -3,6 +3,12 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [10.4.3](https://github.com/leboncoin/spark-web/compare/v10.4.2...v10.4.3) (2025-05-12)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **theme-utils:** css output was no longer named style.css ([3c62d60](https://github.com/leboncoin/spark-web/commit/3c62d6090ae4955b6b2987b48875ba3778dfa7a3))
11
+
6
12
  ## [10.4.2](https://github.com/leboncoin/spark-web/compare/v10.4.1...v10.4.2) (2025-05-12)
7
13
 
8
14
  **Note:** Version bump only for package @spark-ui/theme-utils
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spark-ui/theme-utils",
3
- "version": "10.4.2",
3
+ "version": "10.4.3",
4
4
  "description": "package for managing Spark theme configuration",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -31,5 +31,5 @@
31
31
  },
32
32
  "homepage": "https://sparkui.vercel.app",
33
33
  "license": "MIT",
34
- "gitHead": "838017639fe109f6379fdffb8d8e38e0d3b19e23"
34
+ "gitHead": "b656379a8dcd619e0be1b4343b20a29160ef3592"
35
35
  }
package/vite.config.ts CHANGED
@@ -1,5 +1,5 @@
1
- import path from 'path'
2
1
  import terser from '@rollup/plugin-terser'
2
+ import path from 'path'
3
3
  import dts from 'vite-plugin-dts'
4
4
 
5
5
  const pkg = require(path.resolve(__dirname, './package.json'))
@@ -17,6 +17,7 @@ export default async () => {
17
17
  entry: 'src/index.ts',
18
18
  formats: ['es', 'cjs'],
19
19
  fileName: 'index',
20
+ cssFileName: 'style', // https://vite.dev/guide/migration#customize-css-output-file-name-in-library-mode
20
21
  },
21
22
  rollupOptions: {
22
23
  external: [...deps, ...devDeps],
File without changes