@yao-pkg/pkg 6.2.0 → 6.3.1
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/package.json +3 -3
- package/prelude/bootstrap.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yao-pkg/pkg",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.3.1",
|
|
4
4
|
"description": "Package your Node.js project into an executable",
|
|
5
5
|
"main": "lib-es5/index.js",
|
|
6
6
|
"license": "MIT",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"@babel/generator": "^7.23.0",
|
|
26
26
|
"@babel/parser": "^7.23.0",
|
|
27
27
|
"@babel/types": "^7.23.0",
|
|
28
|
-
"@yao-pkg/pkg-fetch": "3.5.
|
|
28
|
+
"@yao-pkg/pkg-fetch": "3.5.19",
|
|
29
29
|
"into-stream": "^6.0.0",
|
|
30
30
|
"minimist": "^1.2.6",
|
|
31
31
|
"multistream": "^4.1.0",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"resolve": "^1.22.0",
|
|
36
36
|
"stream-meter": "^1.0.4",
|
|
37
37
|
"tar": "^7.4.3",
|
|
38
|
-
"tinyglobby": "^0.2.
|
|
38
|
+
"tinyglobby": "^0.2.11",
|
|
39
39
|
"unzipper": "^0.12.3"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
package/prelude/bootstrap.js
CHANGED
|
@@ -1725,7 +1725,7 @@ function payloadFileSync(pointer) {
|
|
|
1725
1725
|
fs.promises.read = util.promisify(fs.read);
|
|
1726
1726
|
fs.promises.realpath = util.promisify(fs.realpath);
|
|
1727
1727
|
fs.promises.fstat = util.promisify(fs.fstat);
|
|
1728
|
-
fs.promises.statfs = util.promisify(fs.
|
|
1728
|
+
fs.promises.statfs = util.promisify(fs.statfs);
|
|
1729
1729
|
fs.promises.access = util.promisify(fs.access);
|
|
1730
1730
|
|
|
1731
1731
|
// TODO: all promises methods that try to edit files in snapshot should throw
|