vaca 3.0.0 → 3.0.2

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/cli.js CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import meow from 'meow';
3
3
  import indentString from 'indent-string';
4
- import vaca from './index.js';
4
+ import vaca from './main.js';
5
5
 
6
6
  meow(`
7
7
  Usage
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vaca",
3
- "version": "3.0.0",
3
+ "version": "3.0.2",
4
4
  "description": "Get a random ASCII cow 🐮",
5
5
  "license": "MIT",
6
6
  "repository": "sindresorhus/vaca",
@@ -12,6 +12,7 @@
12
12
  },
13
13
  "type": "module",
14
14
  "bin": "./cli.js",
15
+ "main": "./main.js",
15
16
  "engines": {
16
17
  "node": ">=18"
17
18
  },
@@ -19,7 +20,7 @@
19
20
  "test": "xo && ava"
20
21
  },
21
22
  "files": [
22
- "index.js",
23
+ "main.js",
23
24
  "cli.js"
24
25
  ],
25
26
  "keywords": [
File without changes