@forsakringskassan/vite-lib-config 5.12.3 → 5.12.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.
- package/dist/vite.config.cjs +3 -1
- package/dist/vite.config.mjs +3 -1
- package/package.json +1 -1
package/dist/vite.config.cjs
CHANGED
|
@@ -11357,7 +11357,9 @@ var defaultConfig = {
|
|
|
11357
11357
|
outDir: "dist/[custom-format]",
|
|
11358
11358
|
lib: {
|
|
11359
11359
|
entry: lookupFile("src/index"),
|
|
11360
|
-
formats: ["es", "cjs"]
|
|
11360
|
+
formats: ["es", "cjs"],
|
|
11361
|
+
/* use a fixed and deterministic filename */
|
|
11362
|
+
cssFileName: "style"
|
|
11361
11363
|
},
|
|
11362
11364
|
rollupOptions: {
|
|
11363
11365
|
output: {
|
package/dist/vite.config.mjs
CHANGED
|
@@ -11351,7 +11351,9 @@ var defaultConfig = {
|
|
|
11351
11351
|
outDir: "dist/[custom-format]",
|
|
11352
11352
|
lib: {
|
|
11353
11353
|
entry: lookupFile("src/index"),
|
|
11354
|
-
formats: ["es", "cjs"]
|
|
11354
|
+
formats: ["es", "cjs"],
|
|
11355
|
+
/* use a fixed and deterministic filename */
|
|
11356
|
+
cssFileName: "style"
|
|
11355
11357
|
},
|
|
11356
11358
|
rollupOptions: {
|
|
11357
11359
|
output: {
|