@pandacss/node 0.0.0-dev-20230503211936 → 0.0.0-dev-20230503230609
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 +1 -1
- package/dist/index.js +3 -1
- package/dist/index.mjs +3 -1
- package/package.json +13 -13
package/dist/index.d.ts
CHANGED
|
@@ -216,7 +216,7 @@ declare function extractCss(ctx: PandaContext): Promise<string>;
|
|
|
216
216
|
|
|
217
217
|
declare function generate(config: Config, configPath?: string): Promise<void>;
|
|
218
218
|
|
|
219
|
-
declare function setupGitIgnore({ config: { outdir } }: PandaContext): void;
|
|
219
|
+
declare function setupGitIgnore({ config: { outdir, gitignore } }: PandaContext): void;
|
|
220
220
|
|
|
221
221
|
declare function setupConfig(cwd: string, { force }: {
|
|
222
222
|
force?: boolean;
|
package/dist/index.js
CHANGED
|
@@ -2719,7 +2719,9 @@ init_cjs_shims();
|
|
|
2719
2719
|
var import_fs2 = require("fs");
|
|
2720
2720
|
var import_look_it_up2 = require("look-it-up");
|
|
2721
2721
|
var import_outdent = __toESM(require("outdent"));
|
|
2722
|
-
function setupGitIgnore({ config: { outdir } }) {
|
|
2722
|
+
function setupGitIgnore({ config: { outdir, gitignore = true } }) {
|
|
2723
|
+
if (!gitignore)
|
|
2724
|
+
return;
|
|
2723
2725
|
const txt = import_outdent.default`## Panda
|
|
2724
2726
|
${outdir}
|
|
2725
2727
|
${outdir}-static
|
package/dist/index.mjs
CHANGED
|
@@ -2708,7 +2708,9 @@ init_esm_shims();
|
|
|
2708
2708
|
import { appendFileSync, readFileSync as readFileSync3, writeFileSync as writeFileSync2 } from "fs";
|
|
2709
2709
|
import { lookItUpSync as lookItUpSync2 } from "look-it-up";
|
|
2710
2710
|
import outdent from "outdent";
|
|
2711
|
-
function setupGitIgnore({ config: { outdir } }) {
|
|
2711
|
+
function setupGitIgnore({ config: { outdir, gitignore = true } }) {
|
|
2712
|
+
if (!gitignore)
|
|
2713
|
+
return;
|
|
2712
2714
|
const txt = outdent`## Panda
|
|
2713
2715
|
${outdir}
|
|
2714
2716
|
${outdir}-static
|
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-20230503230609",
|
|
4
4
|
"description": "The core css panda library",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -33,17 +33,17 @@
|
|
|
33
33
|
"preferred-pm": "^3.0.3",
|
|
34
34
|
"ts-morph": "18.0.0",
|
|
35
35
|
"ts-pattern": "4.2.2",
|
|
36
|
-
"@pandacss/config": "0.0.0-dev-
|
|
37
|
-
"@pandacss/core": "0.0.0-dev-
|
|
38
|
-
"@pandacss/error": "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/extractor": "0.0.0-dev-
|
|
44
|
-
"@pandacss/shared": "0.0.0-dev-
|
|
45
|
-
"@pandacss/token-dictionary": "0.0.0-dev-
|
|
46
|
-
"@pandacss/types": "0.0.0-dev-
|
|
36
|
+
"@pandacss/config": "0.0.0-dev-20230503230609",
|
|
37
|
+
"@pandacss/core": "0.0.0-dev-20230503230609",
|
|
38
|
+
"@pandacss/error": "0.0.0-dev-20230503230609",
|
|
39
|
+
"@pandacss/generator": "0.0.0-dev-20230503230609",
|
|
40
|
+
"@pandacss/is-valid-prop": "0.0.0-dev-20230503230609",
|
|
41
|
+
"@pandacss/logger": "0.0.0-dev-20230503230609",
|
|
42
|
+
"@pandacss/parser": "0.0.0-dev-20230503230609",
|
|
43
|
+
"@pandacss/extractor": "0.0.0-dev-20230503230609",
|
|
44
|
+
"@pandacss/shared": "0.0.0-dev-20230503230609",
|
|
45
|
+
"@pandacss/token-dictionary": "0.0.0-dev-20230503230609",
|
|
46
|
+
"@pandacss/types": "0.0.0-dev-20230503230609"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"@types/fs-extra": "11.0.1",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"@types/pluralize": "0.0.29",
|
|
54
54
|
"boxen": "^7.0.2",
|
|
55
55
|
"gzip-size": "^7.0.0",
|
|
56
|
-
"@pandacss/fixture": "0.0.0-dev-
|
|
56
|
+
"@pandacss/fixture": "0.0.0-dev-20230503230609"
|
|
57
57
|
},
|
|
58
58
|
"scripts": {
|
|
59
59
|
"build": "tsup src/index.ts --format=cjs,esm --shims --dts",
|