@alphahydrae/exec 0.2.4 → 0.2.6

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 +18 -8
  2. package/package.json +8 -7
package/README.md CHANGED
@@ -20,6 +20,9 @@ This package was developed to be used in Node.js scripts that are frontends to
20
20
  execute other commands. For example, a script that would build and execute a
21
21
  complex SSH or Ansible command.
22
22
 
23
+ [![build](https://github.com/AlphaHydrae/node-exec/actions/workflows/build.yml/badge.svg)](https://github.com/AlphaHydrae/node-exec/actions/workflows/build.yml)
24
+ [![MIT License](https://img.shields.io/static/v1?label=license&message=MIT&color=informational)](https://opensource.org/licenses/MIT)
25
+
23
26
  <!-- START doctoc generated TOC please keep comment here to allow auto update -->
24
27
  <!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
25
28
 
@@ -37,14 +40,21 @@ npm i @alphahydrae/exec
37
40
 
38
41
  ## Support matrix
39
42
 
40
- | OS & Architecture | Node 18 | Node 20 | Node 22 |
41
- | ----------------- | ------- | ------- | ------- |
42
- | macOS x64 ||||
43
- | macOS arm64 ||||
44
- | Linux x64 gnu ||||
45
- | Linux x64 musl ||||
46
- | Linux arm64 gnu ||||
47
- | Linux arm64 musl ||||
43
+ | OS & Architecture | Node.js 18 | Node.js 20 | Node.js 22 |
44
+ | :---------------- | :--------: | :--------: | :--------: |
45
+ | macOS x64 ||||
46
+ | macOS arm64 ||||
47
+ | Linux x64 gnu ||||
48
+ | Linux x64 musl ||||
49
+ | Linux arm64 gnu ||||
50
+ | Linux arm64 musl ||||
51
+ | Linux arm gnu | ❌ | ❌ | ❌ |
52
+ | Android arm64 | ❌ | ❌ | ❌ |
53
+ | Android armv7 | ❌ | ❌ | ❌ |
54
+ | FreeBSD x64 | ❌ | ❌ | ❌ |
55
+ | Windows x64 | ❌ | ❌ | ❌ |
56
+ | Windows x32 | ❌ | ❌ | ❌ |
57
+ | Windows arm64 | ❌ | ❌ | ❌ |
48
58
 
49
59
  > The `exec` family of functions is part of the
50
60
  > [POSIX](https://en.wikipedia.org/wiki/POSIX) operating system API, so it will
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alphahydrae/exec",
3
- "version": "0.2.4",
3
+ "version": "0.2.6",
4
4
  "description": "The execvp function for Node.js",
5
5
  "main": "exec.js",
6
6
  "repository": {
@@ -37,6 +37,7 @@
37
37
  "artifacts": "napi artifacts",
38
38
  "build": "napi build --platform --release",
39
39
  "build:debug": "napi build --platform",
40
+ "build:package": "node scripts/build-packages.mjs",
40
41
  "check": "npm run lint && npm run format",
41
42
  "check:write": "npm run lint && npm run format:write",
42
43
  "doctoc": "doctoc --github --notitle README.md && prettier --write README.md",
@@ -66,11 +67,11 @@
66
67
  "node": "^18 || ^20 || ^22"
67
68
  },
68
69
  "optionalDependencies": {
69
- "@alphahydrae/exec-darwin-x64": "0.2.4",
70
- "@alphahydrae/exec-linux-x64-gnu": "0.2.4",
71
- "@alphahydrae/exec-linux-x64-musl": "0.2.4",
72
- "@alphahydrae/exec-darwin-arm64": "0.2.4",
73
- "@alphahydrae/exec-linux-arm64-gnu": "0.2.4",
74
- "@alphahydrae/exec-linux-arm64-musl": "0.2.4"
70
+ "@alphahydrae/exec-darwin-x64": "0.2.6",
71
+ "@alphahydrae/exec-linux-x64-gnu": "0.2.6",
72
+ "@alphahydrae/exec-linux-x64-musl": "0.2.6",
73
+ "@alphahydrae/exec-darwin-arm64": "0.2.6",
74
+ "@alphahydrae/exec-linux-arm64-gnu": "0.2.6",
75
+ "@alphahydrae/exec-linux-arm64-musl": "0.2.6"
75
76
  }
76
77
  }