@bamboocss/vite 1.29.0 → 1.30.1

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
@@ -1131,7 +1131,7 @@ const createRuntimeCss = (ctx) => {
1131
1131
  * table into each of the overwhelming majority of modules that call `token()` zero times.
1132
1132
  * Keyed weakly so a context that goes out of scope takes its table with it.
1133
1133
  *
1134
- * Both halves of the generated entry are stored, because `token()` and `token.var()` read
1134
+ * Both halves of the generated entry are stored, because `token()` and `token.value()` read
1135
1135
  * different ones and building a second table would pay the same per-project cost twice.
1136
1136
  */
1137
1137
  const tokenValues = /* @__PURE__ */ new WeakMap();
@@ -1863,7 +1863,7 @@ const foldSource = (options) => {
1863
1863
  });
1864
1864
  continue;
1865
1865
  }
1866
- if (!wantsValue && propertyName !== void 0 && propertyName !== "var" && !ctx.imports.matchers.tokens.match(propertyName)) {
1866
+ if (!wantsValue && propertyName !== void 0 && !ctx.imports.matchers.tokens.match(propertyName)) {
1867
1867
  skipped.push({
1868
1868
  name,
1869
1869
  reason: "unsupported-kind",
package/dist/index.mjs CHANGED
@@ -1104,7 +1104,7 @@ const createRuntimeCss = (ctx) => {
1104
1104
  * table into each of the overwhelming majority of modules that call `token()` zero times.
1105
1105
  * Keyed weakly so a context that goes out of scope takes its table with it.
1106
1106
  *
1107
- * Both halves of the generated entry are stored, because `token()` and `token.var()` read
1107
+ * Both halves of the generated entry are stored, because `token()` and `token.value()` read
1108
1108
  * different ones and building a second table would pay the same per-project cost twice.
1109
1109
  */
1110
1110
  const tokenValues = /* @__PURE__ */ new WeakMap();
@@ -1836,7 +1836,7 @@ const foldSource = (options) => {
1836
1836
  });
1837
1837
  continue;
1838
1838
  }
1839
- if (!wantsValue && propertyName !== void 0 && propertyName !== "var" && !ctx.imports.matchers.tokens.match(propertyName)) {
1839
+ if (!wantsValue && propertyName !== void 0 && !ctx.imports.matchers.tokens.match(propertyName)) {
1840
1840
  skipped.push({
1841
1841
  name,
1842
1842
  reason: "unsupported-kind",
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@bamboocss/vite",
3
- "version": "1.29.0",
3
+ "version": "1.30.1",
4
4
  "description": "Vite integration for Bamboo CSS",
5
5
  "homepage": "https://bamboocss.com",
6
6
  "license": "MIT",
7
7
  "author": "Gajus Kuizinas <gajus@gajus.com>",
8
8
  "repository": {
9
9
  "type": "git",
10
- "url": "git+https://github.com/bamboocss/bamboo.git",
10
+ "url": "git+https://github.com/gajus/bamboocss.git",
11
11
  "directory": "packages/vite"
12
12
  },
13
13
  "files": [
@@ -37,18 +37,18 @@
37
37
  "dependencies": {
38
38
  "magic-string": "0.30.21",
39
39
  "ts-morph": "28.0.0",
40
- "@bamboocss/config": "1.29.0",
41
- "@bamboocss/core": "1.29.0",
42
- "@bamboocss/extractor": "1.29.0",
43
- "@bamboocss/logger": "1.29.0",
44
- "@bamboocss/node": "1.29.0",
45
- "@bamboocss/types": "1.29.0",
46
- "@bamboocss/shared": "1.29.0"
40
+ "@bamboocss/config": "1.30.1",
41
+ "@bamboocss/core": "1.30.1",
42
+ "@bamboocss/node": "1.30.1",
43
+ "@bamboocss/logger": "1.30.1",
44
+ "@bamboocss/extractor": "1.30.1",
45
+ "@bamboocss/shared": "1.30.1",
46
+ "@bamboocss/types": "1.30.1"
47
47
  },
48
48
  "devDependencies": {
49
49
  "@jridgewell/trace-mapping": "^0.3.31",
50
50
  "vite": "7.2.6",
51
- "@bamboocss/fixture": "1.29.0"
51
+ "@bamboocss/fixture": "1.30.1"
52
52
  },
53
53
  "peerDependencies": {
54
54
  "vite": ">=5"