@h3ravel/console 6.0.2 → 8.0.0

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 +18 -0
  2. package/package.json +12 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # @h3ravel/console
2
2
 
3
+ ## 8.0.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 79f4045: feat: add add exports to package.json
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [79f4045]
12
+ - @h3ravel/core@1.4.0
13
+
14
+ ## 7.0.0
15
+
16
+ ### Patch Changes
17
+
18
+ - Updated dependencies
19
+ - @h3ravel/core@1.3.0
20
+
3
21
  ## 6.0.2
4
22
 
5
23
  ### Patch Changes
package/package.json CHANGED
@@ -1,10 +1,18 @@
1
1
  {
2
2
  "name": "@h3ravel/console",
3
- "version": "6.0.2",
3
+ "version": "8.0.0",
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.2.2"
36
+ "@h3ravel/core": "^1.4.0"
29
37
  },
30
38
  "devDependencies": {
31
39
  "typescript": "^5.4.0"