@tachikomagundam/abathur 0.1.0 → 0.1.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/README.md +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -38,7 +38,7 @@ instance learn from another's evidence; nothing in v1 talks to a network.
|
|
|
38
38
|
```bash
|
|
39
39
|
npm i -g @tachikomagundam/abathur # from the npm registry
|
|
40
40
|
npm pack # in a checkout; prepack runs the build
|
|
41
|
-
npm i -g ./abathur-0.1.0.tgz
|
|
41
|
+
npm i -g ./tachikomagundam-abathur-0.1.0.tgz
|
|
42
42
|
abathur --help
|
|
43
43
|
```
|
|
44
44
|
|
|
@@ -71,7 +71,7 @@ No models, no network: the `toy-smoke` genome ships inside the package
|
|
|
71
71
|
|
|
72
72
|
```bash
|
|
73
73
|
mkdir -p ~/abathur-demo && cd ~/abathur-demo
|
|
74
|
-
export ABATHUR_PKG="$(npm root -g)/abathur"
|
|
74
|
+
export ABATHUR_PKG="$(npm root -g)/@tachikomagundam/abathur"
|
|
75
75
|
|
|
76
76
|
# 1. materialize an independent toy genome repo (git init + repoPath rewritten)
|
|
77
77
|
node "$ABATHUR_PKG/dist/genomes/toy-smoke/init.mjs" ./genome
|
|
@@ -273,7 +273,7 @@ MIT, see [LICENSE](LICENSE).
|
|
|
273
273
|
```bash
|
|
274
274
|
npm i -g @tachikomagundam/abathur # 从 npm registry 安装
|
|
275
275
|
npm pack # 在 checkout 里执行;prepack 会先构建
|
|
276
|
-
npm i -g ./abathur-0.1.0.tgz
|
|
276
|
+
npm i -g ./tachikomagundam-abathur-0.1.0.tgz
|
|
277
277
|
abathur --help
|
|
278
278
|
```
|
|
279
279
|
|
|
@@ -304,7 +304,7 @@ gitignored 的 `*.local.jsonc` 会深合并覆盖其上。未知键直接 exit 2
|
|
|
304
304
|
|
|
305
305
|
```bash
|
|
306
306
|
mkdir -p ~/abathur-demo && cd ~/abathur-demo
|
|
307
|
-
export ABATHUR_PKG="$(npm root -g)/abathur"
|
|
307
|
+
export ABATHUR_PKG="$(npm root -g)/@tachikomagundam/abathur"
|
|
308
308
|
|
|
309
309
|
# 1. 物化一个独立的玩具基因组仓库(git init + 重写 repoPath)
|
|
310
310
|
node "$ABATHUR_PKG/dist/genomes/toy-smoke/init.mjs" ./genome
|
package/package.json
CHANGED