@h3ravel/support 0.10.2 → 0.10.3

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/dist/index.d.cts CHANGED
@@ -1,4 +1,6 @@
1
1
  /// <reference path="./app.globals.d.ts" />
2
+ import { DotFlatten, DotNestedKeys, DotNestedValue } from "@h3ravel/shared";
3
+
2
4
  //#region src/Contracts/StrContract.d.ts
3
5
  /**
4
6
  * Converts CamelCased strings to snake_case
package/dist/index.d.ts CHANGED
@@ -1,4 +1,6 @@
1
1
  /// <reference path="./app.globals.d.ts" />
2
+ import { DotFlatten, DotNestedKeys, DotNestedValue } from "@h3ravel/shared";
3
+
2
4
  //#region src/Contracts/StrContract.d.ts
3
5
  /**
4
6
  * Converts CamelCased strings to snake_case
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@h3ravel/support",
3
- "version": "0.10.2",
3
+ "version": "0.10.3",
4
4
  "description": "Shared helpers, facades and utilities for H3ravel.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -37,7 +37,7 @@
37
37
  ],
38
38
  "devDependencies": {
39
39
  "typescript": "^5.4.0",
40
- "@h3ravel/shared": "^0.20.4"
40
+ "@h3ravel/shared": "^0.20.8"
41
41
  },
42
42
  "scripts": {
43
43
  "barrel": "barrelsby --directory src --delete --singleQuotes",
@@ -45,6 +45,7 @@
45
45
  "dev": "tsx watch src/index.ts",
46
46
  "start": "node dist/index.js",
47
47
  "lint": "eslint . --ext .ts",
48
- "test": "jest --passWithNoTests"
48
+ "test": "jest --passWithNoTests",
49
+ "version-patch": "pnpm version patch"
49
50
  }
50
51
  }