Skip to content

Commit

Permalink
Pipe/v0.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed May 24, 2024
1 parent ccebdb7 commit cae8c0f
Show file tree
Hide file tree
Showing 8 changed files with 37 additions and 70 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.0.4

- Cleanup

## 0.0.3

- Cleanup
Expand Down
7 changes: 2 additions & 5 deletions Source/Function/Merge.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
* @module Merge
*
*/
export default (await import("deepmerge-ts")).deepmergeCustom<Generic>({
export default (await import("deepmerge-ts")).deepmergeCustom({
mergeArrays: false,
}) satisfies Interface<Generic> as Interface<Generic>;

import type Interface from "../Interface/Merge.js";
import type { Generic } from "../Interface/Merge.js";
});
37 changes: 0 additions & 37 deletions Source/Interface/Merge.ts

This file was deleted.

12 changes: 11 additions & 1 deletion Target/Class/Pipe.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,14 @@ import type Interface from "../Interface/Class.js";
import type Option from "../Interface/Option.js";
import type Plan from "../Interface/Plan.js";
export declare const Cache: boolean | import("../Interface/Cache.js").default | undefined, Logger: boolean | import("../Type/Logger.js").Type | undefined, Action: boolean | import("../Interface/Action.js").default | undefined;
export declare const Merge: import("../Interface/Merge.js").default<import("../Interface/Merge.js").Generic>;
export declare const Merge: <Ts extends readonly unknown[]>(...objects: Ts) => import("deepmerge-ts").DeepMergeHKT<Ts, Readonly<{
DeepMergeRecordsURI: "DeepMergeRecordsDefaultURI";
DeepMergeArraysURI: "DeepMergeArraysDefaultURI";
DeepMergeSetsURI: "DeepMergeSetsDefaultURI";
DeepMergeMapsURI: "DeepMergeMapsDefaultURI";
DeepMergeOthersURI: "DeepMergeLeafURI";
DeepMergeFilterValuesURI: "DeepMergeFilterValuesDefaultURI";
}>, Readonly<{
key: PropertyKey;
parents: readonly Readonly<Record<PropertyKey, unknown>>[];
}>>;
14 changes: 11 additions & 3 deletions Target/Function/Merge.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,15 @@
* @module Merge
*
*/
declare const _default: Interface<Generic>;
declare const _default: <Ts extends readonly unknown[]>(...objects: Ts) => import("deepmerge-ts").DeepMergeHKT<Ts, Readonly<{
DeepMergeRecordsURI: "DeepMergeRecordsDefaultURI";
DeepMergeArraysURI: "DeepMergeArraysDefaultURI";
DeepMergeSetsURI: "DeepMergeSetsDefaultURI";
DeepMergeMapsURI: "DeepMergeMapsDefaultURI";
DeepMergeOthersURI: "DeepMergeLeafURI";
DeepMergeFilterValuesURI: "DeepMergeFilterValuesDefaultURI";
}>, Readonly<{
key: PropertyKey;
parents: readonly Readonly<Record<PropertyKey, unknown>>[];
}>>;
export default _default;
import type Interface from "../Interface/Merge.js";
import type { Generic } from "../Interface/Merge.js";
21 changes: 0 additions & 21 deletions Target/Interface/Merge.d.ts

This file was deleted.

Empty file removed Target/Interface/Merge.js
Empty file.
12 changes: 9 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@playform/pipe",
"version": "0.0.3",
"version": "0.0.4",
"private": false,
"description": "🧪 Pipe —",
"keywords": [
Expand Down Expand Up @@ -28,15 +28,21 @@
"main": "./Target/Class/Pipe.js",
"types": "./Target/Class/Pipe.d.ts",
"scripts": {
"Document": "Document 'Source/**/*.ts'",
"prepublishOnly": "Build 'Source/**/*.ts'"
},
"dependencies": {
"@types/node": "20.12.12",
"deepmerge-ts": "7.0.1",
"fast-glob": "3.3.2"
},
"devDependencies": {
"@playform/build": "0.0.8"
"peerDependencies": {
"@playform/build": "0.0.9"
},
"peerDependenciesMeta": {
"@playform/build": {
"optional": true
}
},
"publishConfig": {
"access": "public"
Expand Down

0 comments on commit cae8c0f

Please sign in to comment.