Skip to content

Commit a5023be

Browse files
Inline/v0.0.7
1 parent 364d8cf commit a5023be

File tree

4 files changed

+19
-35
lines changed

4 files changed

+19
-35
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.0.7
2+
3+
- Cleanup
4+
15
## 0.0.6
26

37
- Cleanup

Target/Function/Integration.d.ts

Lines changed: 7 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -6,26 +6,16 @@ declare const _default: Interface;
66
export default _default;
77
import type Interface from "../Interface/Integration.js";
88
export declare const Default: {
9-
File: string;
10-
Cache: {
11-
Search: string;
12-
Folder: string;
13-
};
14-
Path: string;
15-
Logger: 2;
9+
Critters: import("../Interface/Critters.js").default;
1610
Action: {
17-
Accomplished: false;
18-
Failed: (On: import("@playform/pipe/Target/Interface/File.js").default) => Promise<string>;
19-
Fulfilled: ({ File }: import("@playform/pipe/Target/Interface/Plan.js").default) => Promise<string | false>;
20-
Read: ({ Input }: import("@playform/pipe/Target/Interface/File.js").default) => Promise<string>;
21-
Wrote: ({ Buffer }: import("@playform/pipe/Target/Interface/File.js").default) => Promise<import("@playform/pipe/Target/Type/Buffer.js").Type>;
22-
Passed: (On: import("@playform/pipe/Target/Interface/File.js").default) => Promise<true>;
23-
Changed: (Plan: import("@playform/pipe/Target/Interface/Plan.js").default) => Promise<import("@playform/pipe/Target/Interface/Plan.js").default>;
11+
Failed: (On: any) => Promise<string>;
12+
Fulfilled: ({ File }: {
13+
File: any;
14+
}) => Promise<string | false>;
15+
Accomplished: boolean;
2416
};
25-
Exclude: false;
26-
Critters: import("../Interface/Critters.js").default;
2717
};
28-
export declare const Search: string;
18+
export declare const Search: any;
2919
export declare const Merge: <Ts extends readonly unknown[]>(...objects: Ts) => import("deepmerge-ts").DeepMergeHKT<Ts, Readonly<{
3020
DeepMergeRecordsURI: "DeepMergeRecordsDefaultURI";
3121
DeepMergeArraysURI: "DeepMergeArraysDefaultURI";

Target/Variable/Option.d.ts

Lines changed: 6 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,13 @@
33
*
44
*/
55
declare const _default: {
6-
File: string;
7-
Cache: {
8-
Search: string;
9-
Folder: string;
10-
};
11-
Path: string;
12-
Logger: 2;
6+
Critters: import("../Interface/Critters.js").default;
137
Action: {
14-
Accomplished: false;
15-
Failed: (On: import("@playform/pipe/Target/Interface/File.js").default) => Promise<string>;
16-
Fulfilled: ({ File }: import("@playform/pipe/Target/Interface/Plan.js").default) => Promise<string | false>;
17-
Read: ({ Input }: import("@playform/pipe/Target/Interface/File.js").default) => Promise<string>;
18-
Wrote: ({ Buffer }: import("@playform/pipe/Target/Interface/File.js").default) => Promise<import("@playform/pipe/Target/Type/Buffer.js").Type>;
19-
Passed: (On: import("@playform/pipe/Target/Interface/File.js").default) => Promise<true>;
20-
Changed: (Plan: import("@playform/pipe/Target/Interface/Plan.js").default) => Promise<import("@playform/pipe/Target/Interface/Plan.js").default>;
8+
Failed: (On: any) => Promise<string>;
9+
Fulfilled: ({ File }: {
10+
File: any;
11+
}) => Promise<string | false>;
12+
Accomplished: boolean;
2113
};
22-
Exclude: false;
23-
Critters: import("../Interface/Critters.js").default;
2414
};
2515
export default _default;

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@playform/inline",
3-
"version": "0.0.6",
3+
"version": "0.0.7",
44
"private": false,
55
"description": "🦔 Inline —",
66
"keywords": [
@@ -38,7 +38,7 @@
3838
},
3939
"dependencies": {
4040
"@playform/pipe": "0.0.5",
41-
"astro": "4.10.0",
41+
"astro": "*",
4242
"critters": "0.0.22"
4343
},
4444
"devDependencies": {

0 commit comments

Comments
 (0)