@pandacss/node 0.39.1 → 0.39.2
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 +2 -3
- package/dist/index.mjs +3 -4
- package/package.json +12 -12
package/dist/index.js
CHANGED
|
@@ -763,8 +763,7 @@ var writeAnalyzeJSON = (filePath, result, ctx) => {
|
|
|
763
763
|
theme: ctx.config.theme,
|
|
764
764
|
utilities: ctx.config.utilities,
|
|
765
765
|
conditions: ctx.config.conditions,
|
|
766
|
-
shorthands: ctx.utility.shorthands
|
|
767
|
-
parserOptions: ctx.parserOptions
|
|
766
|
+
shorthands: ctx.utility.shorthands
|
|
768
767
|
}),
|
|
769
768
|
analyzeResultSerializer,
|
|
770
769
|
2
|
|
@@ -2619,7 +2618,7 @@ function parseDependency(fileOrGlob) {
|
|
|
2619
2618
|
}
|
|
2620
2619
|
|
|
2621
2620
|
// src/builder.ts
|
|
2622
|
-
var fileModifiedMap = new
|
|
2621
|
+
var fileModifiedMap = /* @__PURE__ */ new Map();
|
|
2623
2622
|
var Builder = class {
|
|
2624
2623
|
/**
|
|
2625
2624
|
* The current panda context
|
package/dist/index.mjs
CHANGED
|
@@ -737,8 +737,7 @@ var writeAnalyzeJSON = (filePath, result, ctx) => {
|
|
|
737
737
|
theme: ctx.config.theme,
|
|
738
738
|
utilities: ctx.config.utilities,
|
|
739
739
|
conditions: ctx.config.conditions,
|
|
740
|
-
shorthands: ctx.utility.shorthands
|
|
741
|
-
parserOptions: ctx.parserOptions
|
|
740
|
+
shorthands: ctx.utility.shorthands
|
|
742
741
|
}),
|
|
743
742
|
analyzeResultSerializer,
|
|
744
743
|
2
|
|
@@ -765,7 +764,7 @@ init_esm_shims();
|
|
|
765
764
|
import { findConfig, getConfigDependencies } from "@pandacss/config";
|
|
766
765
|
import { optimizeCss } from "@pandacss/core";
|
|
767
766
|
import { logger as logger6 } from "@pandacss/logger";
|
|
768
|
-
import {
|
|
767
|
+
import { PandaError, uniq as uniq2 } from "@pandacss/shared";
|
|
769
768
|
import { existsSync, statSync } from "fs";
|
|
770
769
|
import { normalize as normalize2, resolve as resolve3 } from "path";
|
|
771
770
|
|
|
@@ -2593,7 +2592,7 @@ function parseDependency(fileOrGlob) {
|
|
|
2593
2592
|
}
|
|
2594
2593
|
|
|
2595
2594
|
// src/builder.ts
|
|
2596
|
-
var fileModifiedMap = new
|
|
2595
|
+
var fileModifiedMap = /* @__PURE__ */ new Map();
|
|
2597
2596
|
var Builder = class {
|
|
2598
2597
|
/**
|
|
2599
2598
|
* The current panda context
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pandacss/node",
|
|
3
|
-
"version": "0.39.
|
|
3
|
+
"version": "0.39.2",
|
|
4
4
|
"description": "The core css panda library",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"chokidar": "3.6.0",
|
|
37
37
|
"fast-glob": "3.3.2",
|
|
38
38
|
"file-size": "1.0.0",
|
|
39
|
-
"filesize": "10.1.
|
|
39
|
+
"filesize": "10.1.2",
|
|
40
40
|
"fs-extra": "11.2.0",
|
|
41
41
|
"glob-parent": "6.0.2",
|
|
42
42
|
"is-glob": "4.0.3",
|
|
@@ -46,21 +46,21 @@
|
|
|
46
46
|
"perfect-debounce": "1.0.0",
|
|
47
47
|
"pkg-types": "1.0.3",
|
|
48
48
|
"pluralize": "8.0.0",
|
|
49
|
-
"postcss": "8.4.
|
|
49
|
+
"postcss": "8.4.38",
|
|
50
50
|
"preferred-pm": "3.1.2",
|
|
51
51
|
"prettier": "3.2.5",
|
|
52
52
|
"ts-morph": "21.0.1",
|
|
53
53
|
"ts-pattern": "5.0.8",
|
|
54
54
|
"tsconfck": "3.0.2",
|
|
55
|
-
"@pandacss/config": "0.39.
|
|
56
|
-
"@pandacss/core": "0.39.
|
|
57
|
-
"@pandacss/extractor": "0.39.
|
|
58
|
-
"@pandacss/generator": "0.39.
|
|
59
|
-
"@pandacss/logger": "0.39.
|
|
60
|
-
"@pandacss/parser": "0.39.
|
|
61
|
-
"@pandacss/shared": "0.39.
|
|
62
|
-
"@pandacss/token-dictionary": "0.39.
|
|
63
|
-
"@pandacss/types": "0.39.
|
|
55
|
+
"@pandacss/config": "0.39.2",
|
|
56
|
+
"@pandacss/core": "0.39.2",
|
|
57
|
+
"@pandacss/extractor": "0.39.2",
|
|
58
|
+
"@pandacss/generator": "0.39.2",
|
|
59
|
+
"@pandacss/logger": "0.39.2",
|
|
60
|
+
"@pandacss/parser": "0.39.2",
|
|
61
|
+
"@pandacss/shared": "0.39.2",
|
|
62
|
+
"@pandacss/token-dictionary": "0.39.2",
|
|
63
|
+
"@pandacss/types": "0.39.2"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
66
|
"@types/fs-extra": "11.0.4",
|