@pandacss/node 0.0.0-dev-20230125073613 → 0.0.0-dev-20230125082549

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
@@ -1566,7 +1566,7 @@ function setupPatterns(ctx) {
1566
1566
  return;
1567
1567
  const index = {
1568
1568
  js: import_outdent23.default.string(files.map((file) => ctx.getExport(`./${file.name}`)).join("\n")),
1569
- dts: import_outdent23.default.string(files.map((file) => `export { ${file.name} } from './${file.name}'`).join("\n"))
1569
+ dts: import_outdent23.default.string(files.map((file) => `export * from './${file.name}'`).join("\n"))
1570
1570
  };
1571
1571
  return {
1572
1572
  dir: ctx.paths.pattern,
package/dist/index.mjs CHANGED
@@ -1519,7 +1519,7 @@ function setupPatterns(ctx) {
1519
1519
  return;
1520
1520
  const index = {
1521
1521
  js: outdent23.string(files.map((file) => ctx.getExport(`./${file.name}`)).join("\n")),
1522
- dts: outdent23.string(files.map((file) => `export { ${file.name} } from './${file.name}'`).join("\n"))
1522
+ dts: outdent23.string(files.map((file) => `export * from './${file.name}'`).join("\n"))
1523
1523
  };
1524
1524
  return {
1525
1525
  dir: ctx.paths.pattern,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pandacss/node",
3
- "version": "0.0.0-dev-20230125073613",
3
+ "version": "0.0.0-dev-20230125082549",
4
4
  "description": "The core css panda library",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -30,15 +30,15 @@
30
30
  "javascript-stringify": "2.1.0",
31
31
  "ts-pattern": "4.1.3",
32
32
  "ts-morph": "17.0.1",
33
- "@pandacss/types": "0.0.0-dev-20230125073613",
34
- "@pandacss/is-valid-prop": "0.0.0-dev-20230125073613",
35
- "@pandacss/error": "0.0.0-dev-20230125073613",
36
- "@pandacss/parser": "0.0.0-dev-20230125073613",
37
- "@pandacss/shared": "0.0.0-dev-20230125073613",
38
- "@pandacss/token-dictionary": "0.0.0-dev-20230125073613",
39
- "@pandacss/logger": "0.0.0-dev-20230125073613",
40
- "@pandacss/core": "0.0.0-dev-20230125073613",
41
- "@pandacss/config": "0.0.0-dev-20230125073613"
33
+ "@pandacss/types": "0.0.0-dev-20230125082549",
34
+ "@pandacss/is-valid-prop": "0.0.0-dev-20230125082549",
35
+ "@pandacss/error": "0.0.0-dev-20230125082549",
36
+ "@pandacss/parser": "0.0.0-dev-20230125082549",
37
+ "@pandacss/shared": "0.0.0-dev-20230125082549",
38
+ "@pandacss/token-dictionary": "0.0.0-dev-20230125082549",
39
+ "@pandacss/logger": "0.0.0-dev-20230125082549",
40
+ "@pandacss/core": "0.0.0-dev-20230125082549",
41
+ "@pandacss/config": "0.0.0-dev-20230125082549"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@types/fs-extra": "11.0.1",
@@ -46,7 +46,7 @@
46
46
  "@types/glob-parent": "^5.1.1",
47
47
  "@types/pluralize": "0.0.29",
48
48
  "@types/lodash.merge": "4.6.7",
49
- "@pandacss/fixture": "0.0.0-dev-20230125073613"
49
+ "@pandacss/fixture": "0.0.0-dev-20230125082549"
50
50
  },
51
51
  "scripts": {
52
52
  "build": "tsup src/index.ts --format=cjs,esm --shims --dts",