@h3ravel/support 0.7.4 → 0.8.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 +12 -0
  2. package/package.json +18 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @h3ravel/support
2
2
 
3
+ ## 0.8.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 79f4045: feat: add add exports to package.json
8
+
9
+ ## 0.7.5
10
+
11
+ ### Patch Changes
12
+
13
+ - feat: add homepage and repository to all packages.
14
+
3
15
  ## 0.7.4
4
16
 
5
17
  ### Patch Changes
package/package.json CHANGED
@@ -1,13 +1,27 @@
1
1
  {
2
2
  "name": "@h3ravel/support",
3
- "version": "0.7.4",
3
+ "version": "0.8.0",
4
4
  "description": "Shared helpers, facades and utilities 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
  },
19
+ "homepage": "https://h3ravel.toneflix.net",
20
+ "repository": {
21
+ "type": "git",
22
+ "url": "git+https://github.com/h3ravel/framework.git",
23
+ "directory": "packages/support"
24
+ },
11
25
  "keywords": [
12
26
  "h3ravel",
13
27
  "modern",
@@ -20,7 +34,7 @@
20
34
  ],
21
35
  "devDependencies": {
22
36
  "typescript": "^5.4.0",
23
- "@h3ravel/shared": "^0.15.1"
37
+ "@h3ravel/shared": "^0.16.0"
24
38
  },
25
39
  "scripts": {
26
40
  "barrel": "barrelsby --directory src --delete --singleQuotes",