yavascript 0.14.1 → 0.15.0
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 +2 -2
- package/bin/aarch64-apple-darwin/yavascript +0 -0
- package/bin/aarch64-unknown-linux-gnu/yavascript +0 -0
- package/bin/aarch64-unknown-linux-musl/yavascript +0 -0
- package/bin/aarch64-unknown-linux-static/yavascript +0 -0
- package/bin/x86_64-apple-darwin/yavascript +0 -0
- package/bin/x86_64-pc-windows-static/yavascript.exe +0 -0
- package/bin/x86_64-unknown-linux-gnu/yavascript +0 -0
- package/bin/x86_64-unknown-linux-musl/yavascript +0 -0
- package/bin/x86_64-unknown-linux-static/yavascript +0 -0
- package/dist/index-arm64.js +4438 -2278
- package/dist/index-x86_64.js +4438 -2278
- package/dist/primordials-arm64.js +4432 -2274
- package/dist/primordials-x86_64.js +4432 -2274
- package/package.json +1 -1
- package/yavascript.d.ts +316 -257
package/README.md
CHANGED
|
@@ -57,7 +57,7 @@ if (isWorkingTreeDirty) {
|
|
|
57
57
|
for (const filePath of jsFiles) {
|
|
58
58
|
// filePath is an instance of the Path class: https://github.com/suchipi/yavascript/blob/main/meta/generated-docs/path.md#path-class
|
|
59
59
|
const dtsFilePath = filePath.replaceLast(
|
|
60
|
-
filePath.basename().replace(/\.js$/, ".d.ts")
|
|
60
|
+
filePath.basename().replace(/\.js$/, ".d.ts"),
|
|
61
61
|
);
|
|
62
62
|
if (!exists(dtsFilePath)) {
|
|
63
63
|
const displayPath = quote(dtsFilePath.relativeTo(repoRoot));
|
|
@@ -103,7 +103,7 @@ There are several other projects that bring a shell-like environment to JS, such
|
|
|
103
103
|
- Linux
|
|
104
104
|
- aarch64 or x86_64
|
|
105
105
|
- glibc, muslc, or statically-linked
|
|
106
|
-
- Windows (MinGW)
|
|
106
|
+
- Windows (MinGW, not all APIs are supported)
|
|
107
107
|
- x86_64
|
|
108
108
|
|
|
109
109
|
## Installation
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|