@bamboocss/parser 1.46.2 → 1.47.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/index.d.cts CHANGED
@@ -211,7 +211,11 @@ declare class Generator extends Context {
211
211
  * Get all split CSS artifacts for the stylesheet
212
212
  * Used when --splitting flag is enabled
213
213
  */
214
- getSplitCssArtifacts: (sheet: Stylesheet) => SplitCssResult;
214
+ getSplitCssArtifacts: (sheet: Stylesheet, {
215
+ includeRecipes
216
+ }?: {
217
+ includeRecipes?: boolean;
218
+ }) => SplitCssResult;
215
219
  getSpec: () => SpecFile[];
216
220
  getSpecOfType: <T extends SpecType>(type: T) => T extends "color-palette" | "themes" ? SpecTypeMap[T] | undefined : SpecTypeMap[T];
217
221
  } //#endregion
package/dist/index.d.mts CHANGED
@@ -211,7 +211,11 @@ declare class Generator extends Context {
211
211
  * Get all split CSS artifacts for the stylesheet
212
212
  * Used when --splitting flag is enabled
213
213
  */
214
- getSplitCssArtifacts: (sheet: Stylesheet) => SplitCssResult;
214
+ getSplitCssArtifacts: (sheet: Stylesheet, {
215
+ includeRecipes
216
+ }?: {
217
+ includeRecipes?: boolean;
218
+ }) => SplitCssResult;
215
219
  getSpec: () => SpecFile[];
216
220
  getSpecOfType: <T extends SpecType>(type: T) => T extends "color-palette" | "themes" ? SpecTypeMap[T] | undefined : SpecTypeMap[T];
217
221
  } //#endregion
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bamboocss/parser",
3
- "version": "1.46.2",
3
+ "version": "1.47.0",
4
4
  "description": "The static parser for bamboo css",
5
5
  "homepage": "https://bamboocss.com",
6
6
  "license": "MIT",
@@ -34,18 +34,18 @@
34
34
  "dependencies": {
35
35
  "ts-morph": "28.0.0",
36
36
  "ts-pattern": "5.9.0",
37
- "@bamboocss/config": "^1.46.2",
38
- "@bamboocss/core": "^1.46.2",
39
- "@bamboocss/extractor": "1.46.2",
40
- "@bamboocss/logger": "1.46.2",
41
- "@bamboocss/shared": "1.46.2",
42
- "@bamboocss/types": "1.46.2"
37
+ "@bamboocss/config": "^1.47.0",
38
+ "@bamboocss/core": "^1.47.0",
39
+ "@bamboocss/extractor": "1.47.0",
40
+ "@bamboocss/logger": "1.47.0",
41
+ "@bamboocss/shared": "1.47.0",
42
+ "@bamboocss/types": "1.47.0"
43
43
  },
44
44
  "devDependencies": {
45
45
  "@typescript/api": "npm:typescript@7.1.0-dev.20260819.1",
46
- "@bamboocss/generator": "1.46.2",
47
- "@bamboocss/plugin-svelte": "1.46.2",
48
- "@bamboocss/plugin-vue": "1.46.2"
46
+ "@bamboocss/generator": "1.47.0",
47
+ "@bamboocss/plugin-svelte": "1.47.0",
48
+ "@bamboocss/plugin-vue": "1.47.0"
49
49
  },
50
50
  "scripts": {
51
51
  "build": "tsdown src/index.ts --format=esm,cjs --dts",