Skip to content

Commit

Permalink
Inline/v0.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed Jun 9, 2024
1 parent 364d8cf commit a5023be
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 35 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.7

- Cleanup

## 0.0.6

- Cleanup
Expand Down
24 changes: 7 additions & 17 deletions Target/Function/Integration.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,26 +6,16 @@ declare const _default: Interface;
export default _default;
import type Interface from "../Interface/Integration.js";
export declare const Default: {
File: string;
Cache: {
Search: string;
Folder: string;
};
Path: string;
Logger: 2;
Critters: import("../Interface/Critters.js").default;
Action: {
Accomplished: false;
Failed: (On: import("@playform/pipe/Target/Interface/File.js").default) => Promise<string>;
Fulfilled: ({ File }: import("@playform/pipe/Target/Interface/Plan.js").default) => Promise<string | false>;
Read: ({ Input }: import("@playform/pipe/Target/Interface/File.js").default) => Promise<string>;
Wrote: ({ Buffer }: import("@playform/pipe/Target/Interface/File.js").default) => Promise<import("@playform/pipe/Target/Type/Buffer.js").Type>;
Passed: (On: import("@playform/pipe/Target/Interface/File.js").default) => Promise<true>;
Changed: (Plan: import("@playform/pipe/Target/Interface/Plan.js").default) => Promise<import("@playform/pipe/Target/Interface/Plan.js").default>;
Failed: (On: any) => Promise<string>;
Fulfilled: ({ File }: {
File: any;
}) => Promise<string | false>;
Accomplished: boolean;
};
Exclude: false;
Critters: import("../Interface/Critters.js").default;
};
export declare const Search: string;
export declare const Search: any;
export declare const Merge: <Ts extends readonly unknown[]>(...objects: Ts) => import("deepmerge-ts").DeepMergeHKT<Ts, Readonly<{
DeepMergeRecordsURI: "DeepMergeRecordsDefaultURI";
DeepMergeArraysURI: "DeepMergeArraysDefaultURI";
Expand Down
22 changes: 6 additions & 16 deletions Target/Variable/Option.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,13 @@
*
*/
declare const _default: {
File: string;
Cache: {
Search: string;
Folder: string;
};
Path: string;
Logger: 2;
Critters: import("../Interface/Critters.js").default;
Action: {
Accomplished: false;
Failed: (On: import("@playform/pipe/Target/Interface/File.js").default) => Promise<string>;
Fulfilled: ({ File }: import("@playform/pipe/Target/Interface/Plan.js").default) => Promise<string | false>;
Read: ({ Input }: import("@playform/pipe/Target/Interface/File.js").default) => Promise<string>;
Wrote: ({ Buffer }: import("@playform/pipe/Target/Interface/File.js").default) => Promise<import("@playform/pipe/Target/Type/Buffer.js").Type>;
Passed: (On: import("@playform/pipe/Target/Interface/File.js").default) => Promise<true>;
Changed: (Plan: import("@playform/pipe/Target/Interface/Plan.js").default) => Promise<import("@playform/pipe/Target/Interface/Plan.js").default>;
Failed: (On: any) => Promise<string>;
Fulfilled: ({ File }: {
File: any;
}) => Promise<string | false>;
Accomplished: boolean;
};
Exclude: false;
Critters: import("../Interface/Critters.js").default;
};
export default _default;
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@playform/inline",
"version": "0.0.6",
"version": "0.0.7",
"private": false,
"description": "🦔 Inline —",
"keywords": [
Expand Down Expand Up @@ -38,7 +38,7 @@
},
"dependencies": {
"@playform/pipe": "0.0.5",
"astro": "4.10.0",
"astro": "*",
"critters": "0.0.22"
},
"devDependencies": {
Expand Down

0 comments on commit a5023be

Please sign in to comment.