yuangs 1.3.2 → 1.3.3

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.
@@ -0,0 +1,27 @@
1
+ name: Publish to npm
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - main # Or your default branch like 'master'
7
+
8
+ jobs:
9
+ publish:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: Checkout repository
13
+ uses: actions/checkout@v3
14
+
15
+ - name: Set up Node.js
16
+ uses: actions/setup-node@v3
17
+ with:
18
+ node-version: '18' # Or your preferred Node.js version
19
+ registry-url: 'https://registry.npmjs.org/'
20
+
21
+ - name: Install dependencies
22
+ run: npm ci
23
+
24
+ - name: Publish to npm
25
+ run: npm publish
26
+ env:
27
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
package/README.md CHANGED
@@ -68,4 +68,4 @@ Pong 游戏: https://wealth.want.biz/pages/pong.html
68
68
 
69
69
  ## 维护者
70
70
 
71
- yuanguangshan
71
+ @yuanguangshan
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yuangs",
3
- "version": "1.3.2",
3
+ "version": "1.3.3",
4
4
  "description": "苑广山的个人应用集合 CLI(彩色版)",
5
5
  "main": "index.js",
6
6
  "bin": {