@arcgis/components-build-utils 5.0.0-next.76 → 5.0.0-next.78
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.
|
@@ -2,6 +2,7 @@ export declare const markdownLog: string[];
|
|
|
2
2
|
export declare function addKeyValueToOutput(key: string, value: string[] | string): void;
|
|
3
3
|
export declare function addMarkdownToOutput(key?: string): void;
|
|
4
4
|
export declare function addHeadingToSummary(text: string, level?: 1 | 2 | 3): void;
|
|
5
|
+
export declare function addLineToSummary(text: string): void;
|
|
5
6
|
export declare function addListToSummary(items: string[], ordered?: boolean): void;
|
|
6
7
|
export declare function addNewlineToSummary(): void;
|
|
7
8
|
export declare function writeSummary(): void;
|
|
@@ -2,6 +2,7 @@ export declare const markdownLog: string[];
|
|
|
2
2
|
export declare function addKeyValueToOutput(key: string, value: string[] | string): void;
|
|
3
3
|
export declare function addMarkdownToOutput(key?: string): void;
|
|
4
4
|
export declare function addHeadingToSummary(text: string, level?: 1 | 2 | 3): void;
|
|
5
|
+
export declare function addLineToSummary(text: string): void;
|
|
5
6
|
export declare function addListToSummary(items: string[], ordered?: boolean): void;
|
|
6
7
|
export declare function addNewlineToSummary(): void;
|
|
7
8
|
export declare function writeSummary(): void;
|
package/dist/index.cjs
CHANGED
|
@@ -56,7 +56,7 @@ function findPath(target, startDirectory = process.cwd()) {
|
|
|
56
56
|
}
|
|
57
57
|
return void 0;
|
|
58
58
|
}
|
|
59
|
-
const searchStopIndex =
|
|
59
|
+
const searchStopIndex = 0;
|
|
60
60
|
async function asyncFindPath(target, startDirectory = process.cwd()) {
|
|
61
61
|
const resolvedStartDirectory = startDirectory.startsWith("file:///") ? path$1.dirname(node_url.fileURLToPath(startDirectory)) : path$1.resolve(startDirectory);
|
|
62
62
|
const parentPath = resolvedStartDirectory.split(path$1.sep);
|
package/dist/index.js
CHANGED
|
@@ -32,7 +32,7 @@ function findPath(target, startDirectory = process.cwd()) {
|
|
|
32
32
|
}
|
|
33
33
|
return void 0;
|
|
34
34
|
}
|
|
35
|
-
const searchStopIndex =
|
|
35
|
+
const searchStopIndex = 0;
|
|
36
36
|
async function asyncFindPath(target, startDirectory = process.cwd()) {
|
|
37
37
|
const resolvedStartDirectory = startDirectory.startsWith("file:///") ? dirname(fileURLToPath(startDirectory)) : resolve(startDirectory);
|
|
38
38
|
const parentPath = resolvedStartDirectory.split(sep);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arcgis/components-build-utils",
|
|
3
|
-
"version": "5.0.0-next.
|
|
3
|
+
"version": "5.0.0-next.78",
|
|
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",
|