Skip to content

Commit

Permalink
Format/v0.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed Jun 25, 2024
1 parent d3cc9d6 commit b734723
Show file tree
Hide file tree
Showing 11 changed files with 24 additions and 17 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.6

- Cleanup

## 0.0.5

- Cleanup
Expand Down
2 changes: 1 addition & 1 deletion Source/Function/Integration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,5 +88,5 @@ import type Path from "@playform/pipe/Target/Type/Path.js";
export const { default: Default } = await import("@Variable/Option.js");

export const { default: Merge } = await import(
"@playform/build/Target/Function/Merge.js"
"@Function/Merge.js"
);
7 changes: 7 additions & 0 deletions Source/Function/Merge.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
/**
* @module Merge
*
*/
export default (await import("deepmerge-ts")).deepmergeCustom({
mergeArrays: false,
});
2 changes: 1 addition & 1 deletion Source/Variable/Option.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
*/
export default (
await import("@playform/build/Target/Function/Merge.js")
await import("@Function/Merge.js")
).default((await import("@playform/pipe/Target/Variable/Option.js")).default, {
Biome: (await import("@Variable/Biome.js")).default,
Action: {
Expand Down
1 change: 0 additions & 1 deletion Target/Function/Configuration.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/// <reference types="node" />
/**
* @module Configuration
*
Expand Down
12 changes: 1 addition & 11 deletions Target/Function/Integration.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,4 @@ export declare const Default: {
Exclude: false;
Biome: unknown;
};
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>>[];
}>>;
export declare const Merge: <Ts extends readonly unknown[]>(...objects: Ts) => import("deepmerge-ts").DeepMergeHKT<Ts, import("deepmerge-ts").GetDeepMergeFunctionsURIs<{}>, import("deepmerge-ts").DeepMergeBuiltInMetaData>;
2 changes: 1 addition & 1 deletion Target/Function/Integration.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions Target/Function/Merge.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/**
* @module Merge
*
*/
declare const _default: <Ts extends readonly unknown[]>(...objects: Ts) => import("deepmerge-ts").DeepMergeHKT<Ts, import("deepmerge-ts").GetDeepMergeFunctionsURIs<{}>, import("deepmerge-ts").DeepMergeBuiltInMetaData>;
export default _default;
1 change: 1 addition & 0 deletions Target/Function/Merge.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
var e=(await import("deepmerge-ts")).deepmergeCustom({mergeArrays:!1});export{e as default};
2 changes: 1 addition & 1 deletion Target/Variable/Option.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@playform/format",
"version": "0.0.5",
"version": "0.0.6",
"private": false,
"description": "🗻 Format —",
"keywords": [
Expand Down

0 comments on commit b734723

Please sign in to comment.