@utoo/pack 1.1.23 → 1.1.24

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/cjs/binding.d.ts CHANGED
@@ -57,6 +57,11 @@ export interface NapiWatchOptions {
57
57
  * docker).
58
58
  */
59
59
  pollIntervalMs?: number
60
+ /**
61
+ * Paths to ignore when watching for file changes.
62
+ * By default, ignores: node_modules
63
+ */
64
+ ignored?: Array<string>
60
65
  }
61
66
  export interface NapiProjectOptions {
62
67
  /**
package/esm/binding.d.ts CHANGED
@@ -57,6 +57,11 @@ export interface NapiWatchOptions {
57
57
  * docker).
58
58
  */
59
59
  pollIntervalMs?: number
60
+ /**
61
+ * Paths to ignore when watching for file changes.
62
+ * By default, ignores: node_modules
63
+ */
64
+ ignored?: Array<string>
60
65
  }
61
66
  export interface NapiProjectOptions {
62
67
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@utoo/pack",
3
- "version": "1.1.23",
3
+ "version": "1.1.24",
4
4
  "main": "cjs/index.js",
5
5
  "module": "esm/index.js",
6
6
  "types": "esm/index.d.ts",
@@ -39,7 +39,7 @@
39
39
  "dependencies": {
40
40
  "@babel/code-frame": "7.22.5",
41
41
  "@swc/helpers": "0.5.15",
42
- "@utoo/pack-shared": "1.1.23",
42
+ "@utoo/pack-shared": "1.1.24",
43
43
  "@utoo/style-loader": "^1.0.0",
44
44
  "domparser-rs": "^0.0.5",
45
45
  "find-up": "4.1.0",
@@ -86,12 +86,12 @@
86
86
  },
87
87
  "repository": "git@github.com:utooland/utoo.git",
88
88
  "optionalDependencies": {
89
- "@utoo/pack-darwin-arm64": "1.1.23",
90
- "@utoo/pack-darwin-x64": "1.1.23",
91
- "@utoo/pack-linux-arm64-gnu": "1.1.23",
92
- "@utoo/pack-linux-arm64-musl": "1.1.23",
93
- "@utoo/pack-linux-x64-gnu": "1.1.23",
94
- "@utoo/pack-linux-x64-musl": "1.1.23",
95
- "@utoo/pack-win32-x64-msvc": "1.1.23"
89
+ "@utoo/pack-darwin-arm64": "1.1.24",
90
+ "@utoo/pack-darwin-x64": "1.1.24",
91
+ "@utoo/pack-linux-arm64-gnu": "1.1.24",
92
+ "@utoo/pack-linux-arm64-musl": "1.1.24",
93
+ "@utoo/pack-linux-x64-gnu": "1.1.24",
94
+ "@utoo/pack-linux-x64-musl": "1.1.24",
95
+ "@utoo/pack-win32-x64-msvc": "1.1.24"
96
96
  }
97
97
  }