@bamboocss/vite 1.45.5 → 1.46.0
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/chunk.cjs +28 -0
- package/dist/class-name.cjs +17 -0
- package/dist/class-name.mjs +12 -0
- package/dist/config-module.cjs +9 -0
- package/dist/config-module.mjs +2 -0
- package/dist/css-output-module.cjs +218 -0
- package/dist/css-output-module.mjs +211 -0
- package/dist/fold-module.cjs +2487 -0
- package/dist/fold-module.mjs +2483 -0
- package/dist/index.cjs +1104 -3071
- package/dist/index.d.cts +3 -3
- package/dist/index.d.mts +3 -3
- package/dist/index.mjs +1105 -3047
- package/dist/node-module.cjs +9 -0
- package/dist/node-module.mjs +2 -0
- package/package.json +15 -13
package/dist/index.d.cts
CHANGED
|
@@ -40,9 +40,9 @@ interface BambooVitePluginOptions {
|
|
|
40
40
|
* Remove rules for atoms no compiled module can emit. Builds only; dev never prunes.
|
|
41
41
|
*
|
|
42
42
|
* Off ships the whole extracted stylesheet: every rule the source graph produced, including
|
|
43
|
-
* ones nothing reaches. Larger, and never wrong *by pruning
|
|
44
|
-
*
|
|
45
|
-
*
|
|
43
|
+
* ones nothing reaches. Larger, and never wrong *by pruning*. Bamboo still refuses a sheet
|
|
44
|
+
* which lacks a compiler-owned rule named by live JavaScript; disabling pruning cannot make
|
|
45
|
+
* that mixed-generation output styled.
|
|
46
46
|
*
|
|
47
47
|
* The pruned sheet is also renamed to a hash of its own bytes, and that is not a separate
|
|
48
48
|
* setting because it cannot safely be one. Rollup and Rolldown expand `[hash]` before
|
package/dist/index.d.mts
CHANGED
|
@@ -40,9 +40,9 @@ interface BambooVitePluginOptions {
|
|
|
40
40
|
* Remove rules for atoms no compiled module can emit. Builds only; dev never prunes.
|
|
41
41
|
*
|
|
42
42
|
* Off ships the whole extracted stylesheet: every rule the source graph produced, including
|
|
43
|
-
* ones nothing reaches. Larger, and never wrong *by pruning
|
|
44
|
-
*
|
|
45
|
-
*
|
|
43
|
+
* ones nothing reaches. Larger, and never wrong *by pruning*. Bamboo still refuses a sheet
|
|
44
|
+
* which lacks a compiler-owned rule named by live JavaScript; disabling pruning cannot make
|
|
45
|
+
* that mixed-generation output styled.
|
|
46
46
|
*
|
|
47
47
|
* The pruned sheet is also renamed to a hash of its own bytes, and that is not a separate
|
|
48
48
|
* setting because it cannot safely be one. Rollup and Rolldown expand `[hash]` before
|