@engramresearch/srun 0.1.3 → 0.1.4
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 +3 -1
- package/npm/bin/darwin-arm64/srun +0 -0
- package/npm/bin/linux-x64/srun +0 -0
- package/npm/bin/win32-x64/srun.exe +0 -0
- package/package.json +5 -1
package/README.md
CHANGED
|
@@ -160,7 +160,7 @@ git tag v0.1.3
|
|
|
160
160
|
git push origin main v0.1.3
|
|
161
161
|
```
|
|
162
162
|
|
|
163
|
-
The workflow builds platform binaries, packages them into the single root npm package,
|
|
163
|
+
The workflow builds platform binaries, packages them into the single root npm package, publishes `@engramresearch/srun` to npmjs, then publishes the same package as a GitHub Packages mirror.
|
|
164
164
|
|
|
165
165
|
Required GitHub secret:
|
|
166
166
|
|
|
@@ -170,6 +170,8 @@ NPM_TOKEN
|
|
|
170
170
|
|
|
171
171
|
Use an npm automation/granular token that can publish under `@engramresearch` and bypass 2FA for CI.
|
|
172
172
|
|
|
173
|
+
GitHub Packages uses the workflow `GITHUB_TOKEN`; no extra secret is required.
|
|
174
|
+
|
|
173
175
|
## Current limitations
|
|
174
176
|
|
|
175
177
|
- Prebuilt npm binaries currently target Windows x64, Linux x64, and macOS arm64.
|
|
Binary file
|
package/npm/bin/linux-x64/srun
CHANGED
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@engramresearch/srun",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "Universal Smart Project Runner",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"bin": {
|
|
@@ -33,5 +33,9 @@
|
|
|
33
33
|
],
|
|
34
34
|
"engines": {
|
|
35
35
|
"node": ">=18"
|
|
36
|
+
},
|
|
37
|
+
"repository": {
|
|
38
|
+
"type": "git",
|
|
39
|
+
"url": "git+https://github.com/EngramResearch/srun.git"
|
|
36
40
|
}
|
|
37
41
|
}
|