@pandacss/node 0.0.0-dev-20230203163304 → 0.0.0-dev-20230203181930
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 -5
- package/package.json +11 -11
package/dist/index.d.ts
CHANGED
|
@@ -5,9 +5,7 @@ import * as _pandacss_types_dist_config from '@pandacss/types/dist/config';
|
|
|
5
5
|
import * as ts_morph from 'ts-morph';
|
|
6
6
|
import * as _pandacss_types_dist_shared from '@pandacss/types/dist/shared';
|
|
7
7
|
import * as _pandacss_types from '@pandacss/types';
|
|
8
|
-
import { RecipeConfig, PatternConfig, Config } from '@pandacss/types';
|
|
9
|
-
import * as _pandacss_config from '@pandacss/config';
|
|
10
|
-
import { LoadConfigResult } from '@pandacss/config';
|
|
8
|
+
import { LoadConfigResult, RecipeConfig, PatternConfig, Config } from '@pandacss/types';
|
|
11
9
|
import * as _pandacss_parser from '@pandacss/parser';
|
|
12
10
|
import { Collector } from '@pandacss/parser';
|
|
13
11
|
import * as _pandacss_shared from '@pandacss/shared';
|
|
@@ -201,7 +199,7 @@ declare class Builder {
|
|
|
201
199
|
config: _pandacss_types_dist_shared.UnwrapExtend<_pandacss_types.RequiredBy<_pandacss_types.Config, "include" | "outdir" | "cwd">>;
|
|
202
200
|
configPath: string;
|
|
203
201
|
cwd: string;
|
|
204
|
-
conf:
|
|
202
|
+
conf: _pandacss_types.LoadConfigResult;
|
|
205
203
|
chunks: {
|
|
206
204
|
dir: string;
|
|
207
205
|
readFile(file: string): Promise<string>;
|
|
@@ -352,7 +350,7 @@ declare function loadConfigAndCreateContext(options?: {
|
|
|
352
350
|
config: _pandacss_types_dist_shared.UnwrapExtend<_pandacss_types.RequiredBy<Config, "include" | "outdir" | "cwd">>;
|
|
353
351
|
configPath: string;
|
|
354
352
|
cwd: string;
|
|
355
|
-
conf:
|
|
353
|
+
conf: _pandacss_types.LoadConfigResult;
|
|
356
354
|
chunks: {
|
|
357
355
|
dir: string;
|
|
358
356
|
readFile(file: string): Promise<string>;
|
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-20230203181930",
|
|
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-
|
|
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-20230203181930",
|
|
34
|
+
"@pandacss/is-valid-prop": "0.0.0-dev-20230203181930",
|
|
35
|
+
"@pandacss/error": "0.0.0-dev-20230203181930",
|
|
36
|
+
"@pandacss/parser": "0.0.0-dev-20230203181930",
|
|
37
|
+
"@pandacss/shared": "0.0.0-dev-20230203181930",
|
|
38
|
+
"@pandacss/token-dictionary": "0.0.0-dev-20230203181930",
|
|
39
|
+
"@pandacss/logger": "0.0.0-dev-20230203181930",
|
|
40
|
+
"@pandacss/core": "0.0.0-dev-20230203181930",
|
|
41
|
+
"@pandacss/config": "0.0.0-dev-20230203181930"
|
|
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-
|
|
49
|
+
"@pandacss/fixture": "0.0.0-dev-20230203181930"
|
|
50
50
|
},
|
|
51
51
|
"scripts": {
|
|
52
52
|
"build": "tsup src/index.ts --format=cjs,esm --shims --dts",
|