@arcgis/api-extractor 5.0.0-next.90 → 5.0.0-next.91
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/cli.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +3 -3
package/dist/cli.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import { Command as i } from "@commander-js/extra-typings";
|
|
3
3
|
const e = new i();
|
|
4
4
|
e.name("api-extractor").description("Extract public API from a TypeScript project to produce .d.ts types and api.json docs");
|
|
5
|
-
e.command("diff-types").description("Generate a types diff summary .md file").requiredOption("--original-dts <originalTypings>", "Path to the original types folder").requiredOption("--new-dts <newTypings>", "Path to the new types folder").option("--output-md <outputMd>", "Path to the output markdown file", "types-diff.md").option("--no-truncate", "Do not truncate output if it is longer than 1000 lines", !
|
|
5
|
+
e.command("diff-types").description("Generate a types diff summary .md file").requiredOption("--original-dts <originalTypings>", "Path to the original types folder").requiredOption("--new-dts <newTypings>", "Path to the new types folder").option("--output-md <outputMd>", "Path to the output markdown file", "types-diff.md").option("--no-truncate", "Do not truncate output if it is longer than 1000 lines", !0).action(async (t) => {
|
|
6
6
|
const { diffTypes: o } = await import("./diffTypes/index.js");
|
|
7
7
|
await o({
|
|
8
8
|
originalDtsPath: t.originalDts,
|
package/dist/index.js
CHANGED
|
@@ -2,7 +2,7 @@ import d from "typescript";
|
|
|
2
2
|
import z, { supportsColorStderr as q } from "chalk";
|
|
3
3
|
import { path as J } from "@arcgis/components-build-utils";
|
|
4
4
|
import { mappedFind as j } from "@arcgis/toolkit/array";
|
|
5
|
-
const X = "@arcgis/api-extractor", Q = "5.0.0-next.
|
|
5
|
+
const X = "@arcgis/api-extractor", Q = "5.0.0-next.91", D = {
|
|
6
6
|
name: X,
|
|
7
7
|
version: Q
|
|
8
8
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arcgis/api-extractor",
|
|
3
|
-
"version": "5.0.0-next.
|
|
3
|
+
"version": "5.0.0-next.91",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/index.cjs",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"bin": "./dist/cli.js",
|
|
22
22
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@arcgis/components-build-utils": "5.0.0-next.
|
|
25
|
-
"@arcgis/toolkit": "5.0.0-next.
|
|
24
|
+
"@arcgis/components-build-utils": "5.0.0-next.91",
|
|
25
|
+
"@arcgis/toolkit": "5.0.0-next.91",
|
|
26
26
|
"@commander-js/extra-typings": "^14.0.0",
|
|
27
27
|
"chalk": "^5.4.1",
|
|
28
28
|
"commander": "^14.0.0",
|