orc-me 1.3.1 → 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.
@@ -17,8 +17,8 @@ jobs:
17
17
  if: ${{ github.actor != 'dependabot[bot]' }}
18
18
 
19
19
  steps:
20
- - uses: actions/checkout@v4
21
- - uses: actions/setup-node@v4
20
+ - uses: actions/checkout@v6
21
+ - uses: actions/setup-node@v6
22
22
  with:
23
23
  node-version: lts/krypton
24
24
 
@@ -38,8 +38,8 @@ jobs:
38
38
  id-token: write # 👈 REQUIRED for Trusted Publishing
39
39
 
40
40
  steps:
41
- - uses: actions/checkout@v4
42
- - uses: actions/setup-node@v4
41
+ - uses: actions/checkout@v6
42
+ - uses: actions/setup-node@v6
43
43
  with:
44
44
  node-version: lts/krypton
45
45
  registry-url: https://registry.npmjs.org/
package/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Generate a random Orc-style name.
2
+ * 👹 Generate a random orc name.
3
3
  *
4
4
  * @returns A randomly generated orc name as a string
5
5
  */
package/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * orc-me - 👹 Generate a random orc name
3
- * @version: v1.3.1
3
+ * @version: v1.3.3
4
4
  * @link: https://github.com/tutyamxx/orc-me
5
5
  * @license: MIT
6
6
  **/
@@ -8,7 +8,7 @@
8
8
  const pick = (src) => src?.[Math.random() * src.length | 0] ?? '';
9
9
 
10
10
  /**
11
- * Generate a random Orc-style name.
11
+ * 👹 Generate a random orc name.
12
12
  *
13
13
  * @returns A randomly generated orc name as a string
14
14
  */
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "orc-me",
3
- "version": "1.3.1",
4
- "description": "Generate a random orc name",
3
+ "version": "1.3.3",
4
+ "description": "👹 Generate a random orc name",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
7
7
  "types": "index.d.ts",
@@ -28,6 +28,6 @@
28
28
  "author": "tuty",
29
29
  "license": "MIT",
30
30
  "devDependencies": {
31
- "jest": "^30.2.0"
31
+ "jest": "^30.3.0"
32
32
  }
33
33
  }