orc-me 1.2.6 → 1.2.7

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 CHANGED
@@ -29,6 +29,7 @@
29
29
 
30
30
  # Examples 💻
31
31
 
32
+ ## CommonJS
32
33
  ``` javascript
33
34
  const orcMe = require('orc-me');
34
35
 
package/index.d.ts CHANGED
@@ -3,6 +3,6 @@
3
3
  *
4
4
  * @returns A randomly generated orc name as a string
5
5
  */
6
- declare function orcName(): string;
6
+ declare function orcMe(): string;
7
7
 
8
- export = orcName;
8
+ export = orcMe;
package/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * orc-me - 👹 Generate a random orc name
3
- * @version: v1.2.6
3
+ * @version: v1.2.7
4
4
  * @link: https://github.com/tutyamxx/orc-me
5
5
  * @license: MIT
6
6
  **/
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "orc-me",
3
- "version": "1.2.6",
3
+ "version": "1.2.7",
4
4
  "description": "Generate a random orc name",
5
5
  "main": "index.js",
6
6
  "type": "module",