@pandacss/node 0.0.0-dev-20230601114337 → 0.0.0-dev-20230602132346
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.d.ts +3 -1
- package/dist/index.js +73 -63
- package/dist/index.mjs +73 -63
- package/package.json +13 -13
package/dist/index.d.ts
CHANGED
|
@@ -188,7 +188,9 @@ declare class Builder {
|
|
|
188
188
|
writeFileCss(file: string, css: string): void;
|
|
189
189
|
checkConfigDeps(configPath: string, deps: Set<string>): ConfigDepsResult;
|
|
190
190
|
getConfigPath(): string;
|
|
191
|
-
setup(
|
|
191
|
+
setup(options?: {
|
|
192
|
+
configPath?: string;
|
|
193
|
+
}): Promise<void>;
|
|
192
194
|
setupContext(options: {
|
|
193
195
|
configPath: string;
|
|
194
196
|
depsModifiedMap: Map<string, number>;
|
package/dist/index.js
CHANGED
|
@@ -1069,7 +1069,7 @@ var import_node_process2 = __toESM(require("process"), 1);
|
|
|
1069
1069
|
// ../../node_modules/.pnpm/string-width@5.1.2/node_modules/string-width/index.js
|
|
1070
1070
|
init_cjs_shims();
|
|
1071
1071
|
|
|
1072
|
-
// ../../node_modules/.pnpm/strip-ansi@7.0
|
|
1072
|
+
// ../../node_modules/.pnpm/strip-ansi@7.1.0/node_modules/strip-ansi/index.js
|
|
1073
1073
|
init_cjs_shims();
|
|
1074
1074
|
|
|
1075
1075
|
// ../../node_modules/.pnpm/ansi-regex@6.0.1/node_modules/ansi-regex/index.js
|
|
@@ -1082,12 +1082,13 @@ function ansiRegex({ onlyFirst = false } = {}) {
|
|
|
1082
1082
|
return new RegExp(pattern, onlyFirst ? void 0 : "g");
|
|
1083
1083
|
}
|
|
1084
1084
|
|
|
1085
|
-
// ../../node_modules/.pnpm/strip-ansi@7.0
|
|
1085
|
+
// ../../node_modules/.pnpm/strip-ansi@7.1.0/node_modules/strip-ansi/index.js
|
|
1086
|
+
var regex = ansiRegex();
|
|
1086
1087
|
function stripAnsi(string) {
|
|
1087
1088
|
if (typeof string !== "string") {
|
|
1088
1089
|
throw new TypeError(`Expected a \`string\`, got \`${typeof string}\``);
|
|
1089
1090
|
}
|
|
1090
|
-
return string.replace(
|
|
1091
|
+
return string.replace(regex, "");
|
|
1091
1092
|
}
|
|
1092
1093
|
|
|
1093
1094
|
// ../../node_modules/.pnpm/string-width@5.1.2/node_modules/string-width/index.js
|
|
@@ -1729,70 +1730,78 @@ var import_ansi_align = __toESM(require_ansi_align(), 1);
|
|
|
1729
1730
|
// ../../node_modules/.pnpm/wrap-ansi@8.1.0/node_modules/wrap-ansi/index.js
|
|
1730
1731
|
init_cjs_shims();
|
|
1731
1732
|
|
|
1732
|
-
// ../../node_modules/.pnpm/ansi-styles@6.
|
|
1733
|
+
// ../../node_modules/.pnpm/ansi-styles@6.2.1/node_modules/ansi-styles/index.js
|
|
1733
1734
|
init_cjs_shims();
|
|
1734
1735
|
var ANSI_BACKGROUND_OFFSET2 = 10;
|
|
1735
1736
|
var wrapAnsi162 = (offset = 0) => (code) => `\x1B[${code + offset}m`;
|
|
1736
1737
|
var wrapAnsi2562 = (offset = 0) => (code) => `\x1B[${38 + offset};5;${code}m`;
|
|
1737
1738
|
var wrapAnsi16m2 = (offset = 0) => (red, green, blue) => `\x1B[${38 + offset};2;${red};${green};${blue}m`;
|
|
1739
|
+
var styles3 = {
|
|
1740
|
+
modifier: {
|
|
1741
|
+
reset: [0, 0],
|
|
1742
|
+
// 21 isn't widely supported and 22 does the same thing
|
|
1743
|
+
bold: [1, 22],
|
|
1744
|
+
dim: [2, 22],
|
|
1745
|
+
italic: [3, 23],
|
|
1746
|
+
underline: [4, 24],
|
|
1747
|
+
overline: [53, 55],
|
|
1748
|
+
inverse: [7, 27],
|
|
1749
|
+
hidden: [8, 28],
|
|
1750
|
+
strikethrough: [9, 29]
|
|
1751
|
+
},
|
|
1752
|
+
color: {
|
|
1753
|
+
black: [30, 39],
|
|
1754
|
+
red: [31, 39],
|
|
1755
|
+
green: [32, 39],
|
|
1756
|
+
yellow: [33, 39],
|
|
1757
|
+
blue: [34, 39],
|
|
1758
|
+
magenta: [35, 39],
|
|
1759
|
+
cyan: [36, 39],
|
|
1760
|
+
white: [37, 39],
|
|
1761
|
+
// Bright color
|
|
1762
|
+
blackBright: [90, 39],
|
|
1763
|
+
gray: [90, 39],
|
|
1764
|
+
// Alias of `blackBright`
|
|
1765
|
+
grey: [90, 39],
|
|
1766
|
+
// Alias of `blackBright`
|
|
1767
|
+
redBright: [91, 39],
|
|
1768
|
+
greenBright: [92, 39],
|
|
1769
|
+
yellowBright: [93, 39],
|
|
1770
|
+
blueBright: [94, 39],
|
|
1771
|
+
magentaBright: [95, 39],
|
|
1772
|
+
cyanBright: [96, 39],
|
|
1773
|
+
whiteBright: [97, 39]
|
|
1774
|
+
},
|
|
1775
|
+
bgColor: {
|
|
1776
|
+
bgBlack: [40, 49],
|
|
1777
|
+
bgRed: [41, 49],
|
|
1778
|
+
bgGreen: [42, 49],
|
|
1779
|
+
bgYellow: [43, 49],
|
|
1780
|
+
bgBlue: [44, 49],
|
|
1781
|
+
bgMagenta: [45, 49],
|
|
1782
|
+
bgCyan: [46, 49],
|
|
1783
|
+
bgWhite: [47, 49],
|
|
1784
|
+
// Bright color
|
|
1785
|
+
bgBlackBright: [100, 49],
|
|
1786
|
+
bgGray: [100, 49],
|
|
1787
|
+
// Alias of `bgBlackBright`
|
|
1788
|
+
bgGrey: [100, 49],
|
|
1789
|
+
// Alias of `bgBlackBright`
|
|
1790
|
+
bgRedBright: [101, 49],
|
|
1791
|
+
bgGreenBright: [102, 49],
|
|
1792
|
+
bgYellowBright: [103, 49],
|
|
1793
|
+
bgBlueBright: [104, 49],
|
|
1794
|
+
bgMagentaBright: [105, 49],
|
|
1795
|
+
bgCyanBright: [106, 49],
|
|
1796
|
+
bgWhiteBright: [107, 49]
|
|
1797
|
+
}
|
|
1798
|
+
};
|
|
1799
|
+
var modifierNames2 = Object.keys(styles3.modifier);
|
|
1800
|
+
var foregroundColorNames2 = Object.keys(styles3.color);
|
|
1801
|
+
var backgroundColorNames2 = Object.keys(styles3.bgColor);
|
|
1802
|
+
var colorNames2 = [...foregroundColorNames2, ...backgroundColorNames2];
|
|
1738
1803
|
function assembleStyles2() {
|
|
1739
1804
|
const codes = /* @__PURE__ */ new Map();
|
|
1740
|
-
const styles3 = {
|
|
1741
|
-
modifier: {
|
|
1742
|
-
reset: [0, 0],
|
|
1743
|
-
// 21 isn't widely supported and 22 does the same thing
|
|
1744
|
-
bold: [1, 22],
|
|
1745
|
-
dim: [2, 22],
|
|
1746
|
-
italic: [3, 23],
|
|
1747
|
-
underline: [4, 24],
|
|
1748
|
-
overline: [53, 55],
|
|
1749
|
-
inverse: [7, 27],
|
|
1750
|
-
hidden: [8, 28],
|
|
1751
|
-
strikethrough: [9, 29]
|
|
1752
|
-
},
|
|
1753
|
-
color: {
|
|
1754
|
-
black: [30, 39],
|
|
1755
|
-
red: [31, 39],
|
|
1756
|
-
green: [32, 39],
|
|
1757
|
-
yellow: [33, 39],
|
|
1758
|
-
blue: [34, 39],
|
|
1759
|
-
magenta: [35, 39],
|
|
1760
|
-
cyan: [36, 39],
|
|
1761
|
-
white: [37, 39],
|
|
1762
|
-
// Bright color
|
|
1763
|
-
blackBright: [90, 39],
|
|
1764
|
-
redBright: [91, 39],
|
|
1765
|
-
greenBright: [92, 39],
|
|
1766
|
-
yellowBright: [93, 39],
|
|
1767
|
-
blueBright: [94, 39],
|
|
1768
|
-
magentaBright: [95, 39],
|
|
1769
|
-
cyanBright: [96, 39],
|
|
1770
|
-
whiteBright: [97, 39]
|
|
1771
|
-
},
|
|
1772
|
-
bgColor: {
|
|
1773
|
-
bgBlack: [40, 49],
|
|
1774
|
-
bgRed: [41, 49],
|
|
1775
|
-
bgGreen: [42, 49],
|
|
1776
|
-
bgYellow: [43, 49],
|
|
1777
|
-
bgBlue: [44, 49],
|
|
1778
|
-
bgMagenta: [45, 49],
|
|
1779
|
-
bgCyan: [46, 49],
|
|
1780
|
-
bgWhite: [47, 49],
|
|
1781
|
-
// Bright color
|
|
1782
|
-
bgBlackBright: [100, 49],
|
|
1783
|
-
bgRedBright: [101, 49],
|
|
1784
|
-
bgGreenBright: [102, 49],
|
|
1785
|
-
bgYellowBright: [103, 49],
|
|
1786
|
-
bgBlueBright: [104, 49],
|
|
1787
|
-
bgMagentaBright: [105, 49],
|
|
1788
|
-
bgCyanBright: [106, 49],
|
|
1789
|
-
bgWhiteBright: [107, 49]
|
|
1790
|
-
}
|
|
1791
|
-
};
|
|
1792
|
-
styles3.color.gray = styles3.color.blackBright;
|
|
1793
|
-
styles3.bgColor.bgGray = styles3.bgColor.bgBlackBright;
|
|
1794
|
-
styles3.color.grey = styles3.color.blackBright;
|
|
1795
|
-
styles3.bgColor.bgGrey = styles3.bgColor.bgBlackBright;
|
|
1796
1805
|
for (const [groupName, group] of Object.entries(styles3)) {
|
|
1797
1806
|
for (const [styleName, style] of Object.entries(group)) {
|
|
1798
1807
|
styles3[styleName] = {
|
|
@@ -2493,7 +2502,7 @@ var Builder = class {
|
|
|
2493
2502
|
delete require.cache[file];
|
|
2494
2503
|
}
|
|
2495
2504
|
if (setupCount > 0) {
|
|
2496
|
-
import_logger4.logger.info("
|
|
2505
|
+
import_logger4.logger.info("builder", "\u2699\uFE0F Config changed, reloading");
|
|
2497
2506
|
}
|
|
2498
2507
|
return { isModified: true, modifiedMap: newModified };
|
|
2499
2508
|
}
|
|
@@ -2504,8 +2513,9 @@ var Builder = class {
|
|
|
2504
2513
|
}
|
|
2505
2514
|
return configPath;
|
|
2506
2515
|
}
|
|
2507
|
-
async setup() {
|
|
2508
|
-
|
|
2516
|
+
async setup(options = {}) {
|
|
2517
|
+
import_logger4.logger.info("builder", "\u{1F6A7} Setup");
|
|
2518
|
+
const configPath = options.configPath ?? this.getConfigPath();
|
|
2509
2519
|
const configDeps = (0, import_config3.getConfigDependencies)(configPath);
|
|
2510
2520
|
const deps = this.checkConfigDeps(configPath, configDeps);
|
|
2511
2521
|
if (deps.isModified) {
|
package/dist/index.mjs
CHANGED
|
@@ -1054,7 +1054,7 @@ import process3 from "node:process";
|
|
|
1054
1054
|
// ../../node_modules/.pnpm/string-width@5.1.2/node_modules/string-width/index.js
|
|
1055
1055
|
init_esm_shims();
|
|
1056
1056
|
|
|
1057
|
-
// ../../node_modules/.pnpm/strip-ansi@7.0
|
|
1057
|
+
// ../../node_modules/.pnpm/strip-ansi@7.1.0/node_modules/strip-ansi/index.js
|
|
1058
1058
|
init_esm_shims();
|
|
1059
1059
|
|
|
1060
1060
|
// ../../node_modules/.pnpm/ansi-regex@6.0.1/node_modules/ansi-regex/index.js
|
|
@@ -1067,12 +1067,13 @@ function ansiRegex({ onlyFirst = false } = {}) {
|
|
|
1067
1067
|
return new RegExp(pattern, onlyFirst ? void 0 : "g");
|
|
1068
1068
|
}
|
|
1069
1069
|
|
|
1070
|
-
// ../../node_modules/.pnpm/strip-ansi@7.0
|
|
1070
|
+
// ../../node_modules/.pnpm/strip-ansi@7.1.0/node_modules/strip-ansi/index.js
|
|
1071
|
+
var regex = ansiRegex();
|
|
1071
1072
|
function stripAnsi(string) {
|
|
1072
1073
|
if (typeof string !== "string") {
|
|
1073
1074
|
throw new TypeError(`Expected a \`string\`, got \`${typeof string}\``);
|
|
1074
1075
|
}
|
|
1075
|
-
return string.replace(
|
|
1076
|
+
return string.replace(regex, "");
|
|
1076
1077
|
}
|
|
1077
1078
|
|
|
1078
1079
|
// ../../node_modules/.pnpm/string-width@5.1.2/node_modules/string-width/index.js
|
|
@@ -1714,70 +1715,78 @@ var import_ansi_align = __toESM(require_ansi_align(), 1);
|
|
|
1714
1715
|
// ../../node_modules/.pnpm/wrap-ansi@8.1.0/node_modules/wrap-ansi/index.js
|
|
1715
1716
|
init_esm_shims();
|
|
1716
1717
|
|
|
1717
|
-
// ../../node_modules/.pnpm/ansi-styles@6.
|
|
1718
|
+
// ../../node_modules/.pnpm/ansi-styles@6.2.1/node_modules/ansi-styles/index.js
|
|
1718
1719
|
init_esm_shims();
|
|
1719
1720
|
var ANSI_BACKGROUND_OFFSET2 = 10;
|
|
1720
1721
|
var wrapAnsi162 = (offset = 0) => (code) => `\x1B[${code + offset}m`;
|
|
1721
1722
|
var wrapAnsi2562 = (offset = 0) => (code) => `\x1B[${38 + offset};5;${code}m`;
|
|
1722
1723
|
var wrapAnsi16m2 = (offset = 0) => (red, green, blue) => `\x1B[${38 + offset};2;${red};${green};${blue}m`;
|
|
1724
|
+
var styles3 = {
|
|
1725
|
+
modifier: {
|
|
1726
|
+
reset: [0, 0],
|
|
1727
|
+
// 21 isn't widely supported and 22 does the same thing
|
|
1728
|
+
bold: [1, 22],
|
|
1729
|
+
dim: [2, 22],
|
|
1730
|
+
italic: [3, 23],
|
|
1731
|
+
underline: [4, 24],
|
|
1732
|
+
overline: [53, 55],
|
|
1733
|
+
inverse: [7, 27],
|
|
1734
|
+
hidden: [8, 28],
|
|
1735
|
+
strikethrough: [9, 29]
|
|
1736
|
+
},
|
|
1737
|
+
color: {
|
|
1738
|
+
black: [30, 39],
|
|
1739
|
+
red: [31, 39],
|
|
1740
|
+
green: [32, 39],
|
|
1741
|
+
yellow: [33, 39],
|
|
1742
|
+
blue: [34, 39],
|
|
1743
|
+
magenta: [35, 39],
|
|
1744
|
+
cyan: [36, 39],
|
|
1745
|
+
white: [37, 39],
|
|
1746
|
+
// Bright color
|
|
1747
|
+
blackBright: [90, 39],
|
|
1748
|
+
gray: [90, 39],
|
|
1749
|
+
// Alias of `blackBright`
|
|
1750
|
+
grey: [90, 39],
|
|
1751
|
+
// Alias of `blackBright`
|
|
1752
|
+
redBright: [91, 39],
|
|
1753
|
+
greenBright: [92, 39],
|
|
1754
|
+
yellowBright: [93, 39],
|
|
1755
|
+
blueBright: [94, 39],
|
|
1756
|
+
magentaBright: [95, 39],
|
|
1757
|
+
cyanBright: [96, 39],
|
|
1758
|
+
whiteBright: [97, 39]
|
|
1759
|
+
},
|
|
1760
|
+
bgColor: {
|
|
1761
|
+
bgBlack: [40, 49],
|
|
1762
|
+
bgRed: [41, 49],
|
|
1763
|
+
bgGreen: [42, 49],
|
|
1764
|
+
bgYellow: [43, 49],
|
|
1765
|
+
bgBlue: [44, 49],
|
|
1766
|
+
bgMagenta: [45, 49],
|
|
1767
|
+
bgCyan: [46, 49],
|
|
1768
|
+
bgWhite: [47, 49],
|
|
1769
|
+
// Bright color
|
|
1770
|
+
bgBlackBright: [100, 49],
|
|
1771
|
+
bgGray: [100, 49],
|
|
1772
|
+
// Alias of `bgBlackBright`
|
|
1773
|
+
bgGrey: [100, 49],
|
|
1774
|
+
// Alias of `bgBlackBright`
|
|
1775
|
+
bgRedBright: [101, 49],
|
|
1776
|
+
bgGreenBright: [102, 49],
|
|
1777
|
+
bgYellowBright: [103, 49],
|
|
1778
|
+
bgBlueBright: [104, 49],
|
|
1779
|
+
bgMagentaBright: [105, 49],
|
|
1780
|
+
bgCyanBright: [106, 49],
|
|
1781
|
+
bgWhiteBright: [107, 49]
|
|
1782
|
+
}
|
|
1783
|
+
};
|
|
1784
|
+
var modifierNames2 = Object.keys(styles3.modifier);
|
|
1785
|
+
var foregroundColorNames2 = Object.keys(styles3.color);
|
|
1786
|
+
var backgroundColorNames2 = Object.keys(styles3.bgColor);
|
|
1787
|
+
var colorNames2 = [...foregroundColorNames2, ...backgroundColorNames2];
|
|
1723
1788
|
function assembleStyles2() {
|
|
1724
1789
|
const codes = /* @__PURE__ */ new Map();
|
|
1725
|
-
const styles3 = {
|
|
1726
|
-
modifier: {
|
|
1727
|
-
reset: [0, 0],
|
|
1728
|
-
// 21 isn't widely supported and 22 does the same thing
|
|
1729
|
-
bold: [1, 22],
|
|
1730
|
-
dim: [2, 22],
|
|
1731
|
-
italic: [3, 23],
|
|
1732
|
-
underline: [4, 24],
|
|
1733
|
-
overline: [53, 55],
|
|
1734
|
-
inverse: [7, 27],
|
|
1735
|
-
hidden: [8, 28],
|
|
1736
|
-
strikethrough: [9, 29]
|
|
1737
|
-
},
|
|
1738
|
-
color: {
|
|
1739
|
-
black: [30, 39],
|
|
1740
|
-
red: [31, 39],
|
|
1741
|
-
green: [32, 39],
|
|
1742
|
-
yellow: [33, 39],
|
|
1743
|
-
blue: [34, 39],
|
|
1744
|
-
magenta: [35, 39],
|
|
1745
|
-
cyan: [36, 39],
|
|
1746
|
-
white: [37, 39],
|
|
1747
|
-
// Bright color
|
|
1748
|
-
blackBright: [90, 39],
|
|
1749
|
-
redBright: [91, 39],
|
|
1750
|
-
greenBright: [92, 39],
|
|
1751
|
-
yellowBright: [93, 39],
|
|
1752
|
-
blueBright: [94, 39],
|
|
1753
|
-
magentaBright: [95, 39],
|
|
1754
|
-
cyanBright: [96, 39],
|
|
1755
|
-
whiteBright: [97, 39]
|
|
1756
|
-
},
|
|
1757
|
-
bgColor: {
|
|
1758
|
-
bgBlack: [40, 49],
|
|
1759
|
-
bgRed: [41, 49],
|
|
1760
|
-
bgGreen: [42, 49],
|
|
1761
|
-
bgYellow: [43, 49],
|
|
1762
|
-
bgBlue: [44, 49],
|
|
1763
|
-
bgMagenta: [45, 49],
|
|
1764
|
-
bgCyan: [46, 49],
|
|
1765
|
-
bgWhite: [47, 49],
|
|
1766
|
-
// Bright color
|
|
1767
|
-
bgBlackBright: [100, 49],
|
|
1768
|
-
bgRedBright: [101, 49],
|
|
1769
|
-
bgGreenBright: [102, 49],
|
|
1770
|
-
bgYellowBright: [103, 49],
|
|
1771
|
-
bgBlueBright: [104, 49],
|
|
1772
|
-
bgMagentaBright: [105, 49],
|
|
1773
|
-
bgCyanBright: [106, 49],
|
|
1774
|
-
bgWhiteBright: [107, 49]
|
|
1775
|
-
}
|
|
1776
|
-
};
|
|
1777
|
-
styles3.color.gray = styles3.color.blackBright;
|
|
1778
|
-
styles3.bgColor.bgGray = styles3.bgColor.bgBlackBright;
|
|
1779
|
-
styles3.color.grey = styles3.color.blackBright;
|
|
1780
|
-
styles3.bgColor.bgGrey = styles3.bgColor.bgBlackBright;
|
|
1781
1790
|
for (const [groupName, group] of Object.entries(styles3)) {
|
|
1782
1791
|
for (const [styleName, style] of Object.entries(group)) {
|
|
1783
1792
|
styles3[styleName] = {
|
|
@@ -2478,7 +2487,7 @@ var Builder = class {
|
|
|
2478
2487
|
delete __require.cache[file];
|
|
2479
2488
|
}
|
|
2480
2489
|
if (setupCount > 0) {
|
|
2481
|
-
logger4.info("
|
|
2490
|
+
logger4.info("builder", "\u2699\uFE0F Config changed, reloading");
|
|
2482
2491
|
}
|
|
2483
2492
|
return { isModified: true, modifiedMap: newModified };
|
|
2484
2493
|
}
|
|
@@ -2489,8 +2498,9 @@ var Builder = class {
|
|
|
2489
2498
|
}
|
|
2490
2499
|
return configPath;
|
|
2491
2500
|
}
|
|
2492
|
-
async setup() {
|
|
2493
|
-
|
|
2501
|
+
async setup(options = {}) {
|
|
2502
|
+
logger4.info("builder", "\u{1F6A7} Setup");
|
|
2503
|
+
const configPath = options.configPath ?? this.getConfigPath();
|
|
2494
2504
|
const configDeps = getConfigDependencies(configPath);
|
|
2495
2505
|
const deps = this.checkConfigDeps(configPath, configDeps);
|
|
2496
2506
|
if (deps.isModified) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pandacss/node",
|
|
3
|
-
"version": "0.0.0-dev-
|
|
3
|
+
"version": "0.0.0-dev-20230602132346",
|
|
4
4
|
"description": "The core css panda library",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -32,17 +32,17 @@
|
|
|
32
32
|
"preferred-pm": "^3.0.3",
|
|
33
33
|
"ts-morph": "18.0.0",
|
|
34
34
|
"ts-pattern": "4.3.0",
|
|
35
|
-
"@pandacss/config": "0.0.0-dev-
|
|
36
|
-
"@pandacss/core": "0.0.0-dev-
|
|
37
|
-
"@pandacss/error": "0.0.0-dev-
|
|
38
|
-
"@pandacss/extractor": "0.0.0-dev-
|
|
39
|
-
"@pandacss/generator": "0.0.0-dev-
|
|
40
|
-
"@pandacss/is-valid-prop": "0.0.0-dev-
|
|
41
|
-
"@pandacss/logger": "0.0.0-dev-
|
|
42
|
-
"@pandacss/parser": "0.0.0-dev-
|
|
43
|
-
"@pandacss/shared": "0.0.0-dev-
|
|
44
|
-
"@pandacss/token-dictionary": "0.0.0-dev-
|
|
45
|
-
"@pandacss/types": "0.0.0-dev-
|
|
35
|
+
"@pandacss/config": "0.0.0-dev-20230602132346",
|
|
36
|
+
"@pandacss/core": "0.0.0-dev-20230602132346",
|
|
37
|
+
"@pandacss/error": "0.0.0-dev-20230602132346",
|
|
38
|
+
"@pandacss/extractor": "0.0.0-dev-20230602132346",
|
|
39
|
+
"@pandacss/generator": "0.0.0-dev-20230602132346",
|
|
40
|
+
"@pandacss/is-valid-prop": "0.0.0-dev-20230602132346",
|
|
41
|
+
"@pandacss/logger": "0.0.0-dev-20230602132346",
|
|
42
|
+
"@pandacss/parser": "0.0.0-dev-20230602132346",
|
|
43
|
+
"@pandacss/shared": "0.0.0-dev-20230602132346",
|
|
44
|
+
"@pandacss/token-dictionary": "0.0.0-dev-20230602132346",
|
|
45
|
+
"@pandacss/types": "0.0.0-dev-20230602132346"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@types/fs-extra": "11.0.1",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"@types/pluralize": "0.0.29",
|
|
53
53
|
"boxen": "^7.1.0",
|
|
54
54
|
"gzip-size": "^7.0.0",
|
|
55
|
-
"@pandacss/fixture": "0.0.0-dev-
|
|
55
|
+
"@pandacss/fixture": "0.0.0-dev-20230602132346"
|
|
56
56
|
},
|
|
57
57
|
"scripts": {
|
|
58
58
|
"build": "tsup src/index.ts --format=cjs,esm --shims --dts",
|