artipod 0.5.0 → 0.7.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 +1 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -7,6 +7,7 @@ package just runs its CLI.
|
|
|
7
7
|
```sh
|
|
8
8
|
npx artipod run -it # fresh pod → artipod-bash, kept under ~/.artipod/pods
|
|
9
9
|
npx artipod run -it alpine:3.22 # a registry image, cloned in writable
|
|
10
|
+
npx artipod import ~/proj team/proj:1 # folder → image in the store; run it by ref
|
|
10
11
|
npm install -g artipod # permanent `artipod` on PATH
|
|
11
12
|
```
|
|
12
13
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "artipod",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.0",
|
|
4
4
|
"description": "The artipod CLI — `npx artipod run -it`. Alias package for @artipod/core.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"bin.mjs"
|
|
11
11
|
],
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@artipod/core": "^0.
|
|
13
|
+
"@artipod/core": "^0.7.0"
|
|
14
14
|
},
|
|
15
15
|
"engines": {
|
|
16
16
|
"node": ">=20.0.0"
|