@pandacss/node 0.0.0-dev-20221124174429 → 0.0.0-dev-20221125142901
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 +3 -0
- package/dist/index.mjs +3 -0
- package/package.json +11 -11
package/dist/index.js
CHANGED
|
@@ -1610,6 +1610,7 @@ function createContext(conf, io = fileSystem) {
|
|
|
1610
1610
|
semanticTokens,
|
|
1611
1611
|
prefix: cssVarPrefix
|
|
1612
1612
|
});
|
|
1613
|
+
import_logger4.logger.debug({ type: "ctx:token", msg: tokens.allNames });
|
|
1613
1614
|
const utility = new import_core3.Utility({
|
|
1614
1615
|
tokens,
|
|
1615
1616
|
config: utilities,
|
|
@@ -1619,6 +1620,7 @@ function createContext(conf, io = fileSystem) {
|
|
|
1619
1620
|
conditions: conditionsProp,
|
|
1620
1621
|
breakpoints
|
|
1621
1622
|
});
|
|
1623
|
+
import_logger4.logger.debug({ type: "ctx:conditions", msg: conditions });
|
|
1622
1624
|
(0, import_core3.assignCompositions)(
|
|
1623
1625
|
{ conditions, utility },
|
|
1624
1626
|
(0, import_shared11.compact)({
|
|
@@ -1741,6 +1743,7 @@ function createContext(conf, io = fileSystem) {
|
|
|
1741
1743
|
return import_fast_glob.default.sync(config.include, { cwd, ignore: config.exclude, absolute: true });
|
|
1742
1744
|
}
|
|
1743
1745
|
const files = getFiles();
|
|
1746
|
+
import_logger4.logger.debug({ type: "ctx:files", msg: files });
|
|
1744
1747
|
const importMap = {
|
|
1745
1748
|
css: `${outdir}/css`,
|
|
1746
1749
|
recipe: `${outdir}/recipes`,
|
package/dist/index.mjs
CHANGED
|
@@ -1571,6 +1571,7 @@ function createContext(conf, io = fileSystem) {
|
|
|
1571
1571
|
semanticTokens,
|
|
1572
1572
|
prefix: cssVarPrefix
|
|
1573
1573
|
});
|
|
1574
|
+
logger4.debug({ type: "ctx:token", msg: tokens.allNames });
|
|
1574
1575
|
const utility = new Utility({
|
|
1575
1576
|
tokens,
|
|
1576
1577
|
config: utilities,
|
|
@@ -1580,6 +1581,7 @@ function createContext(conf, io = fileSystem) {
|
|
|
1580
1581
|
conditions: conditionsProp,
|
|
1581
1582
|
breakpoints
|
|
1582
1583
|
});
|
|
1584
|
+
logger4.debug({ type: "ctx:conditions", msg: conditions });
|
|
1583
1585
|
assignCompositions(
|
|
1584
1586
|
{ conditions, utility },
|
|
1585
1587
|
compact({
|
|
@@ -1702,6 +1704,7 @@ function createContext(conf, io = fileSystem) {
|
|
|
1702
1704
|
return glob.sync(config.include, { cwd, ignore: config.exclude, absolute: true });
|
|
1703
1705
|
}
|
|
1704
1706
|
const files = getFiles();
|
|
1707
|
+
logger4.debug({ type: "ctx:files", msg: files });
|
|
1705
1708
|
const importMap = {
|
|
1706
1709
|
css: `${outdir}/css`,
|
|
1707
1710
|
recipe: `${outdir}/recipes`,
|
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-20221125142901",
|
|
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
|
"telejson": "6.0.8",
|
|
31
31
|
"ts-pattern": "4.0.6",
|
|
32
32
|
"ts-morph": "17.0.1",
|
|
33
|
-
"@pandacss/types": "0.0.0-dev-
|
|
34
|
-
"@pandacss/is-valid-prop": "0.0.0-dev-
|
|
35
|
-
"@pandacss/error": "0.0.0-dev-
|
|
36
|
-
"@pandacss/parser": "0.0.0-dev-
|
|
37
|
-
"@pandacss/shared": "0.0.0-dev-
|
|
38
|
-
"@pandacss/token-dictionary": "0.0.0-dev-
|
|
39
|
-
"@pandacss/logger": "0.0.0-dev-
|
|
40
|
-
"@pandacss/core": "0.0.0-dev-
|
|
41
|
-
"@pandacss/config": "0.0.0-dev-
|
|
33
|
+
"@pandacss/types": "0.0.0-dev-20221125142901",
|
|
34
|
+
"@pandacss/is-valid-prop": "0.0.0-dev-20221125142901",
|
|
35
|
+
"@pandacss/error": "0.0.0-dev-20221125142901",
|
|
36
|
+
"@pandacss/parser": "0.0.0-dev-20221125142901",
|
|
37
|
+
"@pandacss/shared": "0.0.0-dev-20221125142901",
|
|
38
|
+
"@pandacss/token-dictionary": "0.0.0-dev-20221125142901",
|
|
39
|
+
"@pandacss/logger": "0.0.0-dev-20221125142901",
|
|
40
|
+
"@pandacss/core": "0.0.0-dev-20221125142901",
|
|
41
|
+
"@pandacss/config": "0.0.0-dev-20221125142901"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@types/fs-extra": "9.0.13",
|
|
@@ -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-
|
|
49
|
+
"@pandacss/fixture": "0.0.0-dev-20221125142901"
|
|
50
50
|
},
|
|
51
51
|
"scripts": {
|
|
52
52
|
"build": "tsup src/index.ts --format=cjs,esm --shims --dts",
|