@ghini/xstart 25.8.26032431 → 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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -2,14 +2,14 @@
2
2
 
3
3
  ## build.js用来修改version和打包
4
4
 
5
- ## 全文件替换xstart为新库名
5
+ ## 全文件替换ghini为新库名
6
6
  ```
7
7
  Remove-Item -Recurse -Force .git
8
8
  git init
9
9
  git add .
10
10
  git commit -m "Initial commit"
11
- git branch -M xstart
11
+ git branch -M ghini
12
12
  git remote add origin https://github.com/xghini/mynpm.git
13
- git push -u origin xstart
13
+ git push -u origin ghini
14
14
  npm run pub
15
15
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ghini/xstart",
3
- "version": "25.8.26032431",
3
+ "version": "25.11.28033518",
4
4
  "scripts": {
5
5
  "build": "node ./build.js",
6
6
  "pub": "npm run build && npm publish && git add . && git commit -m 'update' && git push",