node_modules ignore

This commit is contained in:
2025-05-08 23:43:47 +02:00
parent e19d52f172
commit 4574544c9f
65041 changed files with 10593536 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
import type { StrapiCommand } from '../../types';
interface CmdOptions {
file?: string;
pretty?: boolean;
}
/**
* Will dump configurations to a file or stdout
* @param {string} file filepath to use as output
*/
declare const action: ({ file: filePath, pretty }: CmdOptions) => Promise<never>;
/**
* `$ strapi configuration:dump`
*/
declare const command: StrapiCommand;
export { action, command };
//# sourceMappingURL=dump.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"dump.d.ts","sourceRoot":"","sources":["../../../../src/cli/commands/configuration/dump.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;AAGjD,UAAU,UAAU;IAClB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE,OAAO,CAAC;CAClB;AAiBD;;;GAGG;AACH,QAAA,MAAM,MAAM,+BAAsC,UAAU,mBAyC3D,CAAC;AAEF;;GAEG;AACH,QAAA,MAAM,OAAO,EAAE,aAOd,CAAC;AAEF,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,CAAC"}

View File

@@ -0,0 +1,16 @@
import type { StrapiCommand } from '../../types';
type Strategy = 'replace' | 'merge' | 'keep';
interface CmdOptions {
file?: string;
strategy?: Strategy;
}
/**
* Will restore configurations. It reads from a file or stdin
*/
declare const action: ({ file: filePath, strategy }: CmdOptions) => Promise<never>;
/**
* `$ strapi configuration:restore`
*/
declare const command: StrapiCommand;
export { action, command };
//# sourceMappingURL=restore.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"restore.d.ts","sourceRoot":"","sources":["../../../../src/cli/commands/configuration/restore.ts"],"names":[],"mappings":"AAMA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;AAGjD,KAAK,QAAQ,GAAG,SAAS,GAAG,OAAO,GAAG,MAAM,CAAC;AAE7C,UAAU,UAAU;IAClB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,QAAQ,CAAC,EAAE,QAAQ,CAAC;CACrB;AAED;;GAEG;AACH,QAAA,MAAM,MAAM,iCAAoD,UAAU,mBAoCzE,CAAC;AAkIF;;GAEG;AACH,QAAA,MAAM,OAAO,EAAE,aAOd,CAAC;AAEF,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,CAAC"}