@ghini/xstart 26.1.6201919 → 26.1.6202021
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/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
|
|
9
9
|
```powershell
|
|
10
10
|
$lib = "xstart"
|
|
11
|
-
git clone -b
|
|
11
|
+
git clone -b xstart git@github.com:xghini/mynpm.git $lib && cd $lib
|
|
12
12
|
(Get-Content package.json) -replace 'xstart', $lib | Set-Content package.json
|
|
13
13
|
(Get-Content app/0.ts) -replace 'xstart', $lib | Set-Content app/0.ts
|
|
14
14
|
Remove-Item -Recurse -Force .git
|
|
@@ -21,7 +21,7 @@ git push -u origin $lib && pnpm i && pnpm pub
|
|
|
21
21
|
|
|
22
22
|
```bash
|
|
23
23
|
lib="xstart"
|
|
24
|
-
git clone -b
|
|
24
|
+
git clone -b xstart git@github.com:xghini/mynpm.git $lib && cd $lib
|
|
25
25
|
perl -i -pe "s/xstart/$lib/g" package.json app/0.ts
|
|
26
26
|
rm -rf .git
|
|
27
27
|
git init && git add . && git commit -m "init $lib"
|