@rust-gear/glob 0.2.1 → 0.2.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.
Files changed (2) hide show
  1. package/README.md +5 -5
  2. package/package.json +10 -10
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # rust-glob
1
+ # @rust-gear/glob
2
2
 
3
3
  A high-performance globbing library for Node.js, powered by native Rust code.
4
4
 
@@ -28,10 +28,10 @@ You can pass an options object as the second argument to `globSync/glob`.
28
28
  > If the pattern is absolute, absolute paths are returned.
29
29
  > If the pattern is relative, paths are returned relative to the specified `cwd`.
30
30
 
31
- | Option | Type | Description |
32
- | :------ | :------- | :----------------------------------------------------- |
33
- | cwd | string | **(Required)** Current working directory for searching |
34
- | exclude | string[] | Array of glob patterns to exclude |
31
+ | Option | Type | Description |
32
+ | :------ | :------- | :-------------------------------------- |
33
+ | cwd | string | Current working directory for searching |
34
+ | exclude | string[] | Array of glob patterns to exclude |
35
35
 
36
36
  ### Example
37
37
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rust-gear/glob",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "Node.js bindings for Rust glob library",
5
5
  "keywords": [
6
6
  "rust-gear",
@@ -53,14 +53,14 @@
53
53
  "@napi-rs/cli": "^2.18.4"
54
54
  },
55
55
  "optionalDependencies": {
56
- "@rust-gear/glob-darwin-arm64": "0.2.1",
57
- "@rust-gear/glob-darwin-x64": "0.2.1",
58
- "@rust-gear/glob-linux-arm64-gnu": "0.2.1",
59
- "@rust-gear/glob-linux-arm64-musl": "0.2.1",
60
- "@rust-gear/glob-linux-x64-gnu": "0.2.1",
61
- "@rust-gear/glob-linux-x64-musl": "0.2.1",
62
- "@rust-gear/glob-win32-arm64-msvc": "0.2.1",
63
- "@rust-gear/glob-win32-ia32-msvc": "0.2.1",
64
- "@rust-gear/glob-win32-x64-msvc": "0.2.1"
56
+ "@rust-gear/glob-darwin-arm64": "0.2.2",
57
+ "@rust-gear/glob-darwin-x64": "0.2.2",
58
+ "@rust-gear/glob-linux-arm64-gnu": "0.2.2",
59
+ "@rust-gear/glob-linux-arm64-musl": "0.2.2",
60
+ "@rust-gear/glob-linux-x64-gnu": "0.2.2",
61
+ "@rust-gear/glob-linux-x64-musl": "0.2.2",
62
+ "@rust-gear/glob-win32-arm64-msvc": "0.2.2",
63
+ "@rust-gear/glob-win32-ia32-msvc": "0.2.2",
64
+ "@rust-gear/glob-win32-x64-msvc": "0.2.2"
65
65
  }
66
66
  }