Skip to content

Commit

Permalink
squash!
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed May 24, 2024
1 parent 53770e5 commit 498f323
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 9 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/NPM.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ jobs:
continue-on-error: true
working-directory: .
run: |
npm install --include prod dev optional peer --legacy-peer-deps
npm publish --legacy-peer-deps --provenance
npm publish --legacy-peer-deps --provenance --ignore-scripts
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
21 changes: 19 additions & 2 deletions Target/Function/Integration.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,22 @@
declare const _default: Interface;
export default _default;
import type Interface from "../Interface/Integration.js";
export declare const Default: unknown;
export declare const Merge: import("@playform/build/Target/Interface/Merge.js").default<import("@playform/build/Target/Interface/Merge.js").Generic>;
export declare const Default: {
Biome: any;
Action: {
Failed: (On: import("@playform/pipe/Target/Interface/File.js").default) => Promise<string>;
Accomplished: (On: import("@playform/pipe/Target/Interface/File.js").default) => Promise<string>;
Fulfilled: ({ File }: import("@playform/pipe/Target/Interface/Plan.js").default) => Promise<string | false>;
};
};
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>>[];
}>>;
9 changes: 8 additions & 1 deletion Target/Variable/Option.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,12 @@
* @module Option
*
*/
declare const _default: unknown;
declare const _default: {
Biome: any;
Action: {
Failed: (On: import("@playform/pipe/Target/Interface/File.js").default) => Promise<string>;
Accomplished: (On: import("@playform/pipe/Target/Interface/File.js").default) => Promise<string>;
Fulfilled: ({ File }: import("@playform/pipe/Target/Interface/Plan.js").default) => Promise<string | false>;
};
};
export default _default;
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,15 @@
"@biomejs/backend-jsonrpc": "1.7.3",
"@biomejs/js-api": "nightly",
"@biomejs/wasm-nodejs": "1.7.3",
"@playform/pipe": "0.0.3",
"@playform/pipe": "0.0.5",
"deepmerge-ts": "7.0.1"
},
"devDependencies": {
"@playform/build": "0.0.8",
"@playform/document": "0.0.6"
"@playform/build": "0.0.9",
"@playform/document": "0.0.7"
},
"peerDependencies": {
"astro": "4.8.7"
"astro": "4.9.1"
},
"peerDependenciesMeta": {
"astro": {
Expand Down

0 comments on commit 498f323

Please sign in to comment.