@ghini/xstart 26.1.6202021 → 26.1.6203852
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
|
@@ -14,7 +14,7 @@ git clone -b xstart git@github.com:xghini/mynpm.git $lib && cd $lib
|
|
|
14
14
|
Remove-Item -Recurse -Force .git
|
|
15
15
|
git init && git add . && git commit -m "init $lib"
|
|
16
16
|
git branch -M $lib && git remote add origin git@github.com:xghini/mynpm.git
|
|
17
|
-
git push -u origin $lib && pnpm i && pnpm pub
|
|
17
|
+
git push -u origin $lib -f && pnpm i && pnpm pub
|
|
18
18
|
```
|
|
19
19
|
|
|
20
20
|
**Bash (Linux/macOS)**
|
|
@@ -26,7 +26,7 @@ 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"
|
|
28
28
|
git branch -M $lib && git remote add origin git@github.com:xghini/mynpm.git
|
|
29
|
-
git push -u origin $lib && pnpm i && pnpm pub
|
|
29
|
+
git push -u origin $lib -f && pnpm i && pnpm pub
|
|
30
30
|
```
|
|
31
31
|
|
|
32
32
|
## 🚀 开发命令
|