@ghini/xstart 25.8.24084529 → 25.11.28033518
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 -9
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,20 +1,15 @@
|
|
|
1
|
-
#
|
|
2
|
-
|
|
3
|
-
## dev纯js开发环境
|
|
4
|
-
## dist(转化为支持ts的环境(简单标准没有ts))起个备份作用
|
|
5
|
-
## private私有测试
|
|
6
|
-
## test公开测试
|
|
1
|
+
# 一个标准JS(兼容ts)的npm库开始结构
|
|
7
2
|
|
|
8
3
|
## build.js用来修改version和打包
|
|
9
4
|
|
|
10
|
-
##
|
|
5
|
+
## 全文件替换ghini为新库名
|
|
11
6
|
```
|
|
12
7
|
Remove-Item -Recurse -Force .git
|
|
13
8
|
git init
|
|
14
9
|
git add .
|
|
15
10
|
git commit -m "Initial commit"
|
|
16
|
-
git branch -M
|
|
11
|
+
git branch -M ghini
|
|
17
12
|
git remote add origin https://github.com/xghini/mynpm.git
|
|
18
|
-
git push -u origin
|
|
13
|
+
git push -u origin ghini
|
|
19
14
|
npm run pub
|
|
20
15
|
```
|