tokenami 0.0.88 → 0.0.89

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/cli.js CHANGED
@@ -1054,7 +1054,7 @@ function getParsedSelectors(propertySelector, selectorConfig, elementSelectors)
1054
1054
 
1055
1055
  // package.json
1056
1056
  var package_default = {
1057
- version: "0.0.87"};
1057
+ version: "0.0.88"};
1058
1058
 
1059
1059
  // src/ts-plugin/error-codes.ts
1060
1060
  var INVALID_PROPERTY = 2353;
package/dist/index.cjs CHANGED
@@ -1203,7 +1203,9 @@ ${colorDescription}`);
1203
1203
  let isTokenami = contextual.getProperties().some((p) => p.name === "__tokenami__");
1204
1204
  if (!isTokenami) {
1205
1205
  const typeString = checker.typeToString(contextual);
1206
- isTokenami = typeString.includes("TokenamiProperties");
1206
+ const isTokenamiProperties = typeString.includes("TokenamiProperties");
1207
+ const isTokenamiOverride = typeString.includes("TokenamiOverride");
1208
+ isTokenami = isTokenamiProperties || isTokenamiOverride;
1207
1209
  }
1208
1210
  if (isTokenami) this.#isTokenamiObjectCache.set(cacheKey, true);
1209
1211
  return isTokenami;
package/dist/index.js CHANGED
@@ -1179,7 +1179,9 @@ ${colorDescription}`);
1179
1179
  let isTokenami = contextual.getProperties().some((p) => p.name === "__tokenami__");
1180
1180
  if (!isTokenami) {
1181
1181
  const typeString = checker.typeToString(contextual);
1182
- isTokenami = typeString.includes("TokenamiProperties");
1182
+ const isTokenamiProperties = typeString.includes("TokenamiProperties");
1183
+ const isTokenamiOverride = typeString.includes("TokenamiOverride");
1184
+ isTokenami = isTokenamiProperties || isTokenamiOverride;
1183
1185
  }
1184
1186
  if (isTokenami) this.#isTokenamiObjectCache.set(cacheKey, true);
1185
1187
  return isTokenami;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tokenami",
3
- "version": "0.0.88",
3
+ "version": "0.0.89",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -45,8 +45,8 @@
45
45
  },
46
46
  "dependencies": {
47
47
  "@stitches/stringify": "^1.2.8",
48
- "@tokenami/config": "0.0.88",
49
- "@tokenami/ds": "0.0.88",
48
+ "@tokenami/config": "0.0.89",
49
+ "@tokenami/ds": "0.0.89",
50
50
  "acorn": "^8.11.3",
51
51
  "acorn-walk": "^8.3.2",
52
52
  "browserslist": "^4.24.4",
@@ -67,5 +67,5 @@
67
67
  "peerDependencies": {
68
68
  "typescript": ">= 5"
69
69
  },
70
- "gitHead": "59517a01e2d410298f97cc9157ca92f7f5024712"
70
+ "gitHead": "d58887a218198093eb57fc0c7e222ec232393d6d"
71
71
  }