@h3ravel/console 7.0.0 → 8.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +17 -0
  2. package/package.json +12 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # @h3ravel/console
2
2
 
3
+ ## 8.0.2
4
+
5
+ ### Patch Changes
6
+
7
+ - fix: nothing at all
8
+
9
+ ## 8.0.0
10
+
11
+ ### Minor Changes
12
+
13
+ - 79f4045: feat: add add exports to package.json
14
+
15
+ ### Patch Changes
16
+
17
+ - Updated dependencies [79f4045]
18
+ - @h3ravel/core@1.4.0
19
+
3
20
  ## 7.0.0
4
21
 
5
22
  ### Patch Changes
package/package.json CHANGED
@@ -1,10 +1,18 @@
1
1
  {
2
2
  "name": "@h3ravel/console",
3
- "version": "7.0.0",
3
+ "version": "8.0.2",
4
4
  "description": "CLI utilities for scaffolding, running migrations, tasks and for H3ravel.",
5
5
  "type": "module",
6
- "main": "dist/index.js",
7
- "types": "dist/index.d.ts",
6
+ "main": "./dist/index.js",
7
+ "types": "./dist/index.d.ts",
8
+ "module": "./dist/index.js",
9
+ "exports": {
10
+ ".": {
11
+ "import": "./dist/index.js",
12
+ "require": "./dist/index.cjs",
13
+ "types": "./dist/index.d.ts"
14
+ }
15
+ },
8
16
  "publishConfig": {
9
17
  "access": "public"
10
18
  },
@@ -25,7 +33,7 @@
25
33
  "laravel"
26
34
  ],
27
35
  "peerDependencies": {
28
- "@h3ravel/core": "^1.3.0"
36
+ "@h3ravel/core": "^1.4.0"
29
37
  },
30
38
  "devDependencies": {
31
39
  "typescript": "^5.4.0"