@bamboocss/parser 1.51.3 → 1.51.5

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.cjs CHANGED
@@ -2046,7 +2046,7 @@ var Project = class {
2046
2046
  })), ...(0, _bamboocss_ts_ast.getExportDeclarations)(sourceFile).map((declaration) => ({
2047
2047
  declaration,
2048
2048
  kind: "export"
2049
- }))].filter(({ declaration }) => (0, _bamboocss_ts_ast.getModuleSpecifierValue)(declaration) !== void 0).sort((left, right) => left.declaration.getStart() - right.declaration.getStart());
2049
+ }))].filter(({ declaration }) => (0, _bamboocss_ts_ast.getModuleSpecifierValue)(declaration) !== void 0).filter(({ declaration }) => !(0, _bamboocss_ts_ast.isTypeOnly)(declaration)).sort((left, right) => left.declaration.getStart() - right.declaration.getStart());
2050
2050
  const facts = [];
2051
2051
  const pendingCandidates = [];
2052
2052
  const configurationFiles = [];
package/dist/index.mjs CHANGED
@@ -2045,7 +2045,7 @@ var Project = class {
2045
2045
  })), ...getExportDeclarations(sourceFile).map((declaration) => ({
2046
2046
  declaration,
2047
2047
  kind: "export"
2048
- }))].filter(({ declaration }) => getModuleSpecifierValue(declaration) !== void 0).sort((left, right) => left.declaration.getStart() - right.declaration.getStart());
2048
+ }))].filter(({ declaration }) => getModuleSpecifierValue(declaration) !== void 0).filter(({ declaration }) => !isTypeOnly(declaration)).sort((left, right) => left.declaration.getStart() - right.declaration.getStart());
2049
2049
  const facts = [];
2050
2050
  const pendingCandidates = [];
2051
2051
  const configurationFiles = [];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bamboocss/parser",
3
- "version": "1.51.3",
3
+ "version": "1.51.5",
4
4
  "description": "The static parser for bamboo css",
5
5
  "homepage": "https://bamboocss.com",
6
6
  "license": "MIT",
@@ -33,20 +33,20 @@
33
33
  },
34
34
  "dependencies": {
35
35
  "ts-pattern": "5.9.0",
36
- "@bamboocss/config": "^1.51.3",
37
- "@bamboocss/core": "^1.51.3",
38
- "@bamboocss/extractor": "1.51.3",
39
- "@bamboocss/logger": "1.51.3",
40
- "@bamboocss/shared": "1.51.3",
41
- "@bamboocss/ts-ast": "1.51.3",
42
- "@bamboocss/types": "1.51.3"
36
+ "@bamboocss/config": "^1.51.5",
37
+ "@bamboocss/core": "^1.51.5",
38
+ "@bamboocss/extractor": "1.51.5",
39
+ "@bamboocss/logger": "1.51.5",
40
+ "@bamboocss/shared": "1.51.5",
41
+ "@bamboocss/ts-ast": "1.51.5",
42
+ "@bamboocss/types": "1.51.5"
43
43
  },
44
44
  "devDependencies": {
45
45
  "@typescript/api": "npm:typescript@7.1.0-dev.20260826.1",
46
46
  "ts-morph": "28.0.0",
47
- "@bamboocss/generator": "1.51.3",
48
- "@bamboocss/plugin-svelte": "1.51.3",
49
- "@bamboocss/plugin-vue": "1.51.3"
47
+ "@bamboocss/generator": "1.51.5",
48
+ "@bamboocss/plugin-svelte": "1.51.5",
49
+ "@bamboocss/plugin-vue": "1.51.5"
50
50
  },
51
51
  "scripts": {
52
52
  "build": "tsdown src/index.ts --format=esm,cjs --dts",