diff --git a/Documentation/.nojekyll b/Documentation/.nojekyll new file mode 100644 index 0000000..e2ac661 --- /dev/null +++ b/Documentation/.nojekyll @@ -0,0 +1 @@ +TypeDoc added this file to prevent GitHub Pages from using Jekyll. You can turn off this behavior by setting the `githubPages` option to false. \ No newline at end of file diff --git a/Documentation/Function/Integration.Integration.html b/Documentation/Function/Integration.Integration.html new file mode 100644 index 0000000..0d8822a --- /dev/null +++ b/Documentation/Function/Integration.Integration.html @@ -0,0 +1,53 @@ +
Generated using TypeDoc
Rest
...Objects: TsDeepMergeHKT - A type representing the result of the deep merge operation.
+ +Generated using TypeDoc
Optional
ActionAction pipe configuration.
+Optional
CacheConfiguration for the target cache.
+{ Search: "./", Folder: "./Cache" }
+
+Optional
ExcludeCriteria for excluding files.
+Optional
FilesFile patterns to be matched.
+Optional
LoggerDebugging level.
+2
+
+Optional
PathConfiguration for the target path(s).
+"./Target"
+
+Generated using TypeDoc
Generated using TypeDoc
Generated using TypeDoc
Generated using TypeDoc
Generated using TypeDoc
This Astro integration converts all your files into +different formats.
+There are two ways to add integrations to your project. Let's try the most +convenient option first!
+astro add
commandAstro includes a CLI tool for adding first party integrations: astro add
. This
+command will:
astro.config.*
file to apply this integrationTo install astro-convert
, run the following from your project directory and
+follow the prompts:
Using NPM:
+npx astro add astro-convert
+
+Using Yarn:
+yarn astro add astro-convert
+
+Using PNPM:
+pnpx astro add astro-convert
+
+First, install the astro-convert
integration like so:
npm install -D -E astro-convert
+
+Then, apply this integration to your astro.config.*
file using the
+integrations
property:
astro.config.ts
import Convert from "astro-convert";
export default {
integrations: [Convert()],
};
+
+You can override any of the default options from the configurations of:
+or disable them entirely:
+import Convert from "astro-convert";
export default {
integrations: [
Convert({
Convert: false,
}),
],
};
+
+Set Logger
to 0
if you do not want to see debug messages. Default is 2
.
import Convert from "astro-convert";
export default {
integrations: [
Convert({
Logger: 0,
}),
],
};
+
+See CHANGELOG.md for a history of changes to this integration.
+Generated using TypeDoc
Merges multiple objects of type Ts using the provided merge functions and built-in metadata.
+