@pandacss/node 0.0.0-dev-20250206220520 → 0.0.0-dev-20250303142943

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 CHANGED
@@ -2034,12 +2034,12 @@ var nodeRuntime = {
2034
2034
  watch(options) {
2035
2035
  const { include, exclude, cwd, poll } = options;
2036
2036
  const coalesce = poll || process.platform === "win32";
2037
- const watcher = import_chokidar.default.watch(include, {
2037
+ const files = import_fast_glob.default.sync(include, { cwd, ignore: exclude });
2038
+ const watcher = import_chokidar.default.watch(files, {
2038
2039
  usePolling: poll,
2039
2040
  cwd,
2040
2041
  ignoreInitial: true,
2041
2042
  ignorePermissionErrors: true,
2042
- ignored: exclude,
2043
2043
  awaitWriteFinish: coalesce ? { stabilityThreshold: 50, pollInterval: 10 } : false
2044
2044
  });
2045
2045
  import_logger2.logger.debug("watch:file", `watching [${include}]`);
package/dist/index.mjs CHANGED
@@ -2009,12 +2009,12 @@ var nodeRuntime = {
2009
2009
  watch(options) {
2010
2010
  const { include, exclude, cwd, poll } = options;
2011
2011
  const coalesce = poll || process.platform === "win32";
2012
- const watcher = chokidar.watch(include, {
2012
+ const files = glob.sync(include, { cwd, ignore: exclude });
2013
+ const watcher = chokidar.watch(files, {
2013
2014
  usePolling: poll,
2014
2015
  cwd,
2015
2016
  ignoreInitial: true,
2016
2017
  ignorePermissionErrors: true,
2017
- ignored: exclude,
2018
2018
  awaitWriteFinish: coalesce ? { stabilityThreshold: 50, pollInterval: 10 } : false
2019
2019
  });
2020
2020
  logger2.debug("watch:file", `watching [${include}]`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pandacss/node",
3
- "version": "0.0.0-dev-20250206220520",
3
+ "version": "0.0.0-dev-20250303142943",
4
4
  "description": "The core css panda library",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -50,15 +50,15 @@
50
50
  "ts-morph": "24.0.0",
51
51
  "ts-pattern": "5.0.8",
52
52
  "tsconfck": "3.0.2",
53
- "@pandacss/config": "0.0.0-dev-20250206220520",
54
- "@pandacss/core": "0.0.0-dev-20250206220520",
55
- "@pandacss/generator": "0.0.0-dev-20250206220520",
56
- "@pandacss/reporter": "0.0.0-dev-20250206220520",
57
- "@pandacss/logger": "0.0.0-dev-20250206220520",
58
- "@pandacss/parser": "0.0.0-dev-20250206220520",
59
- "@pandacss/shared": "0.0.0-dev-20250206220520",
60
- "@pandacss/token-dictionary": "0.0.0-dev-20250206220520",
61
- "@pandacss/types": "0.0.0-dev-20250206220520"
53
+ "@pandacss/config": "0.0.0-dev-20250303142943",
54
+ "@pandacss/core": "0.0.0-dev-20250303142943",
55
+ "@pandacss/generator": "0.0.0-dev-20250303142943",
56
+ "@pandacss/reporter": "0.0.0-dev-20250303142943",
57
+ "@pandacss/logger": "0.0.0-dev-20250303142943",
58
+ "@pandacss/parser": "0.0.0-dev-20250303142943",
59
+ "@pandacss/shared": "0.0.0-dev-20250303142943",
60
+ "@pandacss/token-dictionary": "0.0.0-dev-20250303142943",
61
+ "@pandacss/types": "0.0.0-dev-20250303142943"
62
62
  },
63
63
  "devDependencies": {
64
64
  "@types/fs-extra": "11.0.4",