@rust-gear/glob 0.2.1 → 0.2.3
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/README.md +5 -5
- package/package.json +12 -12
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 |
|
|
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.
|
|
3
|
+
"version": "0.2.3",
|
|
4
4
|
"description": "Node.js bindings for Rust glob library",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"rust-gear",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"url": "git+https://github.com/rust-gear-project/rust-gear.git"
|
|
14
14
|
},
|
|
15
15
|
"license": "Apache-2.0",
|
|
16
|
-
"author": "Refirst",
|
|
16
|
+
"author": "Refirst 11",
|
|
17
17
|
"main": "index.js",
|
|
18
18
|
"module": "index.mjs",
|
|
19
19
|
"types": "index.d.ts",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"build": "napi build --platform --release",
|
|
41
41
|
"packages": "node ../../scripts/generate-platform-packages.js",
|
|
42
42
|
"readme": "node ../../scripts/generate-platform-readme.js",
|
|
43
|
-
"test": "
|
|
43
|
+
"test": "ava"
|
|
44
44
|
},
|
|
45
45
|
"engines": {
|
|
46
46
|
"node": ">=10"
|
|
@@ -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.
|
|
57
|
-
"@rust-gear/glob-darwin-x64": "0.2.
|
|
58
|
-
"@rust-gear/glob-linux-arm64-gnu": "0.2.
|
|
59
|
-
"@rust-gear/glob-linux-arm64-musl": "0.2.
|
|
60
|
-
"@rust-gear/glob-linux-x64-gnu": "0.2.
|
|
61
|
-
"@rust-gear/glob-linux-x64-musl": "0.2.
|
|
62
|
-
"@rust-gear/glob-win32-arm64-msvc": "0.2.
|
|
63
|
-
"@rust-gear/glob-win32-ia32-msvc": "0.2.
|
|
64
|
-
"@rust-gear/glob-win32-x64-msvc": "0.2.
|
|
56
|
+
"@rust-gear/glob-darwin-arm64": "0.2.3",
|
|
57
|
+
"@rust-gear/glob-darwin-x64": "0.2.3",
|
|
58
|
+
"@rust-gear/glob-linux-arm64-gnu": "0.2.3",
|
|
59
|
+
"@rust-gear/glob-linux-arm64-musl": "0.2.3",
|
|
60
|
+
"@rust-gear/glob-linux-x64-gnu": "0.2.3",
|
|
61
|
+
"@rust-gear/glob-linux-x64-musl": "0.2.3",
|
|
62
|
+
"@rust-gear/glob-win32-arm64-msvc": "0.2.3",
|
|
63
|
+
"@rust-gear/glob-win32-ia32-msvc": "0.2.3",
|
|
64
|
+
"@rust-gear/glob-win32-x64-msvc": "0.2.3"
|
|
65
65
|
}
|
|
66
66
|
}
|