@arcgis/components-build-utils 4.34.0-next.49 → 4.34.0-next.50
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/commands/ensure-working-tree-clean.d.cts +1 -0
- package/dist/commands/ensure-working-tree-clean.d.ts +1 -0
- package/dist/commands/git-copy/getFileNames.d.cts +1 -1
- package/dist/commands/git-copy/getFileNames.d.ts +1 -1
- package/dist/commands/git-copy/index.d.cts +2 -1
- package/dist/commands/git-copy/index.d.ts +2 -1
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare function getFileNames(sourceRelative: string, sourceRoot: string, endsWithIgnore: string[], ignore?: string[]): {
|
|
1
|
+
export declare function getFileNames(sourceRelative: string, sourceRoot: string, endsWithIgnore: string[], containsIgnore: string[], ignore?: string[]): {
|
|
2
2
|
filteredFiles: string[];
|
|
3
3
|
rootFiles: Set<string>;
|
|
4
4
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare function getFileNames(sourceRelative: string, sourceRoot: string, endsWithIgnore: string[], ignore?: string[]): {
|
|
1
|
+
export declare function getFileNames(sourceRelative: string, sourceRoot: string, endsWithIgnore: string[], containsIgnore: string[], ignore?: string[]): {
|
|
2
2
|
filteredFiles: string[];
|
|
3
3
|
rootFiles: Set<string>;
|
|
4
4
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare function copyFolderWithHistory(rawSource: string, rawDestination: string, { yes, emitPatchFiles, dryRun, dirtyCheck, addBackLinks, ignoreAlreadyExists, remote, ignore, endsWithIgnore, rename: rawRenames, dumpSizes, dumpFileSizes, updateMergeCommitTitlesFrom, }: {
|
|
1
|
+
export declare function copyFolderWithHistory(rawSource: string, rawDestination: string, { yes, emitPatchFiles, dryRun, dirtyCheck, addBackLinks, ignoreAlreadyExists, remote, ignore, endsWithIgnore, containsIgnore, rename: rawRenames, dumpSizes, dumpFileSizes, updateMergeCommitTitlesFrom, }: {
|
|
2
2
|
readonly yes: boolean;
|
|
3
3
|
readonly emitPatchFiles: boolean;
|
|
4
4
|
readonly dryRun: boolean;
|
|
@@ -8,6 +8,7 @@ export declare function copyFolderWithHistory(rawSource: string, rawDestination:
|
|
|
8
8
|
readonly remote: string;
|
|
9
9
|
readonly ignore?: string[];
|
|
10
10
|
readonly endsWithIgnore?: string[];
|
|
11
|
+
readonly containsIgnore?: string[];
|
|
11
12
|
readonly rename?: string[];
|
|
12
13
|
readonly dumpSizes: boolean;
|
|
13
14
|
readonly dumpFileSizes: boolean;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare function copyFolderWithHistory(rawSource: string, rawDestination: string, { yes, emitPatchFiles, dryRun, dirtyCheck, addBackLinks, ignoreAlreadyExists, remote, ignore, endsWithIgnore, rename: rawRenames, dumpSizes, dumpFileSizes, updateMergeCommitTitlesFrom, }: {
|
|
1
|
+
export declare function copyFolderWithHistory(rawSource: string, rawDestination: string, { yes, emitPatchFiles, dryRun, dirtyCheck, addBackLinks, ignoreAlreadyExists, remote, ignore, endsWithIgnore, containsIgnore, rename: rawRenames, dumpSizes, dumpFileSizes, updateMergeCommitTitlesFrom, }: {
|
|
2
2
|
readonly yes: boolean;
|
|
3
3
|
readonly emitPatchFiles: boolean;
|
|
4
4
|
readonly dryRun: boolean;
|
|
@@ -8,6 +8,7 @@ export declare function copyFolderWithHistory(rawSource: string, rawDestination:
|
|
|
8
8
|
readonly remote: string;
|
|
9
9
|
readonly ignore?: string[];
|
|
10
10
|
readonly endsWithIgnore?: string[];
|
|
11
|
+
readonly containsIgnore?: string[];
|
|
11
12
|
readonly rename?: string[];
|
|
12
13
|
readonly dumpSizes: boolean;
|
|
13
14
|
readonly dumpFileSizes: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arcgis/components-build-utils",
|
|
3
|
-
"version": "4.34.0-next.
|
|
3
|
+
"version": "4.34.0-next.50",
|
|
4
4
|
"description": "Collection of common internal build-time patterns and utilities for ArcGIS Maps SDK for JavaScript components.",
|
|
5
5
|
"homepage": "https://developers.arcgis.com/javascript/latest/",
|
|
6
6
|
"type": "module",
|