@pandacss/config 0.0.0-dev-20240112100832 → 0.0.0-dev-20240113111256

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.js CHANGED
@@ -306,7 +306,7 @@ function getDeps(opts, fromAlias) {
306
306
  }
307
307
  try {
308
308
  const found = import_typescript.default.resolveModuleName(mod, absoluteFile, compilerOptions, import_typescript.default.sys).resolvedModule;
309
- if (found && found.extension === ".ts") {
309
+ if (found && found.extension.endsWith("ts")) {
310
310
  getDeps(Object.assign({}, nextOpts, { filename: found.resolvedFileName }));
311
311
  return;
312
312
  }
package/dist/index.mjs CHANGED
@@ -251,7 +251,7 @@ function getDeps(opts, fromAlias) {
251
251
  }
252
252
  try {
253
253
  const found = ts.resolveModuleName(mod, absoluteFile, compilerOptions, ts.sys).resolvedModule;
254
- if (found && found.extension === ".ts") {
254
+ if (found && found.extension.endsWith("ts")) {
255
255
  getDeps(Object.assign({}, nextOpts, { filename: found.resolvedFileName }));
256
256
  return;
257
257
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pandacss/config",
3
- "version": "0.0.0-dev-20240112100832",
3
+ "version": "0.0.0-dev-20240113111256",
4
4
  "description": "Find and load panda config",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -64,12 +64,12 @@
64
64
  "merge-anything": "^5.1.7",
65
65
  "microdiff": "^1.3.2",
66
66
  "typescript": "^5.3.3",
67
- "@pandacss/error": "0.0.0-dev-20240112100832",
68
- "@pandacss/logger": "0.0.0-dev-20240112100832",
69
- "@pandacss/preset-base": "0.0.0-dev-20240112100832",
70
- "@pandacss/preset-panda": "0.0.0-dev-20240112100832",
71
- "@pandacss/shared": "0.0.0-dev-20240112100832",
72
- "@pandacss/types": "0.0.0-dev-20240112100832"
67
+ "@pandacss/error": "0.0.0-dev-20240113111256",
68
+ "@pandacss/logger": "0.0.0-dev-20240113111256",
69
+ "@pandacss/preset-base": "0.0.0-dev-20240113111256",
70
+ "@pandacss/preset-panda": "0.0.0-dev-20240113111256",
71
+ "@pandacss/shared": "0.0.0-dev-20240113111256",
72
+ "@pandacss/types": "0.0.0-dev-20240113111256"
73
73
  },
74
74
  "devDependencies": {
75
75
  "pkg-types": "1.0.3"