Skip to content

Commit

Permalink
squash!
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed Mar 21, 2024
1 parent 4a322b6 commit fad9f19
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 14 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/GitHub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,19 +20,19 @@ jobs:

env:
ADBLOCK: true
TELEMETRY_DISABLED: 1
ASTRO_TELEMETRY_DISABLED: 1
AUTOMATEDLAB_TELEMETRY_OPTOUT: 1
AZURE_CORE_COLLECT_TELEMETRY: 0
CHOOSENIM_NO_ANALYTICS: 1
DIEZ_DO_NOT_TRACK: 1
DO_NOT_TRACK: 1
DOTNET_CLI_TELEMETRY_OPTOUT: 1
DOTNET_INTERACTIVE_CLI_TELEMETRY_OPTOUT: 1
DO_NOT_TRACK: 1
ET_NO_TELEMETRY: 1
GATSBY_TELEMETRY_DISABLED: 1
GATSBY_TELEMETRY_OPT_OUT: 1
GATSBY_TELEMETRY_OPTOUT: 1
GATSBY_TELEMETRY_OPT_OUT: 1
GRIT_TELEMETRY_DISABLED: 1
HASURA_GRAPHQL_ENABLE_TELEMETRY: false
HINT_TELEMETRY: off
HOMEBREW_NO_ANALYTICS: 1
Expand All @@ -47,6 +47,7 @@ jobs:
SAM_CLI_TELEMETRY: 0
STNOUPGRADE: 1
STRIPE_CLI_TELEMETRY_OPTOUT: 1
TELEMETRY_DISABLED: 1

steps:
- uses: pozil/[email protected]
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/Node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,19 +23,19 @@ jobs:

env:
ADBLOCK: true
TELEMETRY_DISABLED: 1
ASTRO_TELEMETRY_DISABLED: 1
AUTOMATEDLAB_TELEMETRY_OPTOUT: 1
AZURE_CORE_COLLECT_TELEMETRY: 0
CHOOSENIM_NO_ANALYTICS: 1
DIEZ_DO_NOT_TRACK: 1
DO_NOT_TRACK: 1
DOTNET_CLI_TELEMETRY_OPTOUT: 1
DOTNET_INTERACTIVE_CLI_TELEMETRY_OPTOUT: 1
DO_NOT_TRACK: 1
ET_NO_TELEMETRY: 1
GATSBY_TELEMETRY_DISABLED: 1
GATSBY_TELEMETRY_OPT_OUT: 1
GATSBY_TELEMETRY_OPTOUT: 1
GATSBY_TELEMETRY_OPT_OUT: 1
GRIT_TELEMETRY_DISABLED: 1
HASURA_GRAPHQL_ENABLE_TELEMETRY: false
HINT_TELEMETRY: off
HOMEBREW_NO_ANALYTICS: 1
Expand All @@ -50,6 +50,7 @@ jobs:
SAM_CLI_TELEMETRY: 0
STNOUPGRADE: 1
STRIPE_CLI_TELEMETRY_OPTOUT: 1
TELEMETRY_DISABLED: 1

strategy:
matrix:
Expand Down
2 changes: 1 addition & 1 deletion Source/Variable/Option.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
export default (
await import("typescript-esbuild/Target/Function/Merge.js")
).default(await import("files-pipe/Target/Variable/Option.js"), {
Pipe: {},
Action: {},
} satisfies Option);

import type Option from "files-pipe/Target/Interface/Option.js";
6 changes: 3 additions & 3 deletions Target/Function/Integration.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ declare const _default: Type;
export default _default;
import type Type from "../Interface/Integration.js";
export declare const Default: Omit<{} & {
Pipe: {};
default: {
Cache: {
Search: string;
Expand All @@ -20,11 +19,12 @@ export declare const Default: Omit<{} & {
Passed: (On: any) => Promise<true>;
Failed: ({ Input }: any) => Promise<string>;
Accomplished: ({ Input, Output }: any) => Promise<string>;
Fulfilled: ({ Files }: any) => Promise<string | false>;
Fulfilled: ({ File }: any) => Promise<string | false>;
Changed: (Plan: any) => Promise<any>;
};
Files: string;
File: string;
Exclude: false;
};
Action: {};
}, "__proto__">;
export declare const Merge: import("typescript-esbuild/Target/Interface/Merge.js").default<import("typescript-esbuild/Target/Interface/Merge.js").Generic>;
6 changes: 3 additions & 3 deletions Target/Variable/Option.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
*
*/
declare const _default: Omit<{} & {
Pipe: {};
default: {
Cache: {
Search: string;
Expand All @@ -17,11 +16,12 @@ declare const _default: Omit<{} & {
Passed: (On: any) => Promise<true>;
Failed: ({ Input }: any) => Promise<string>;
Accomplished: ({ Input, Output }: any) => Promise<string>;
Fulfilled: ({ Files }: any) => Promise<string | false>;
Fulfilled: ({ File }: any) => Promise<string | false>;
Changed: (Plan: any) => Promise<any>;
};
Files: string;
File: string;
Exclude: false;
};
Action: {};
}, "__proto__">;
export default _default;
2 changes: 1 addition & 1 deletion Target/Variable/Option.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
var t=(await import("typescript-esbuild/Target/Function/Merge.js")).default(await import("files-pipe/Target/Variable/Option.js"),{Pipe:{}});export{t as default};
var t=(await import("typescript-esbuild/Target/Function/Merge.js")).default(await import("files-pipe/Target/Variable/Option.js"),{Action:{}});export{t as default};

0 comments on commit fad9f19

Please sign in to comment.