mirror of
https://github.com/strapi/strapi.git
synced 2025-09-26 17:00:55 +00:00
remove stage names
This commit is contained in:
parent
62cbc25bbf
commit
ac8a422e13
@ -116,7 +116,7 @@ class LocalFileDestinationProvider implements IDestinationProvider {
|
|||||||
const filePathFactory = createFilePathFactory(this.options.file.path, 'schemas');
|
const filePathFactory = createFilePathFactory(this.options.file.path, 'schemas');
|
||||||
|
|
||||||
// Transform streams
|
// Transform streams
|
||||||
const transforms: Writable[] = this.#getDataTransformers('schemas');
|
const transforms: Writable[] = this.#getDataTransformers();
|
||||||
|
|
||||||
// FS write stream
|
// FS write stream
|
||||||
const fileStream = createMultiFilesWriteStream(filePathFactory, this.options.file.maxSizeJsonl);
|
const fileStream = createMultiFilesWriteStream(filePathFactory, this.options.file.maxSizeJsonl);
|
||||||
@ -131,7 +131,7 @@ class LocalFileDestinationProvider implements IDestinationProvider {
|
|||||||
const filePathFactory = createFilePathFactory(this.options.file.path, 'entities');
|
const filePathFactory = createFilePathFactory(this.options.file.path, 'entities');
|
||||||
|
|
||||||
// Transform streams
|
// Transform streams
|
||||||
const transforms: Writable[] = this.#getDataTransformers('entities');
|
const transforms: Writable[] = this.#getDataTransformers();
|
||||||
|
|
||||||
// FS write stream
|
// FS write stream
|
||||||
const fileStream = createMultiFilesWriteStream(filePathFactory, this.options.file.maxSize);
|
const fileStream = createMultiFilesWriteStream(filePathFactory, this.options.file.maxSize);
|
||||||
@ -146,7 +146,7 @@ class LocalFileDestinationProvider implements IDestinationProvider {
|
|||||||
const filePathFactory = createFilePathFactory(this.options.file.path, 'links');
|
const filePathFactory = createFilePathFactory(this.options.file.path, 'links');
|
||||||
|
|
||||||
// Transform streams
|
// Transform streams
|
||||||
const transforms: Writable[] = this.#getDataTransformers('links');
|
const transforms: Writable[] = this.#getDataTransformers();
|
||||||
|
|
||||||
// FS write stream
|
// FS write stream
|
||||||
const fileStream = createMultiFilesWriteStream(filePathFactory, this.options.file.maxSizeJsonl);
|
const fileStream = createMultiFilesWriteStream(filePathFactory, this.options.file.maxSizeJsonl);
|
||||||
@ -161,7 +161,7 @@ class LocalFileDestinationProvider implements IDestinationProvider {
|
|||||||
const filePathFactory = createFilePathFactory(this.options.file.path, 'configuration');
|
const filePathFactory = createFilePathFactory(this.options.file.path, 'configuration');
|
||||||
|
|
||||||
// Transform streams
|
// Transform streams
|
||||||
const transforms: Writable[] = this.#getDataTransformers('configuration');
|
const transforms: Writable[] = this.#getDataTransformers();
|
||||||
|
|
||||||
// FS write stream
|
// FS write stream
|
||||||
const fileStream = createMultiFilesWriteStream(filePathFactory, this.options.file.maxSize);
|
const fileStream = createMultiFilesWriteStream(filePathFactory, this.options.file.maxSize);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user