@itwin/build-tools 5.0.0-dev.1 → 5.0.0-dev.100
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/CHANGELOG.md +80 -1
- package/bin/betools.js +9 -5
- package/mocha-reporter/index.js +1 -0
- package/package.json +10 -10
- package/scripts/docs.js +7 -6
- package/tsconfig-base.json +2 -1
package/CHANGELOG.md
CHANGED
@@ -1,6 +1,85 @@
|
|
1
1
|
# Change Log - @itwin/build-tools
|
2
2
|
|
3
|
-
This log was last generated on
|
3
|
+
This log was last generated on Wed, 02 Apr 2025 19:38:36 GMT and should not be manually modified.
|
4
|
+
|
5
|
+
## 4.10.12
|
6
|
+
Wed, 02 Apr 2025 19:35:47 GMT
|
7
|
+
|
8
|
+
_Version update only_
|
9
|
+
|
10
|
+
## 4.10.11
|
11
|
+
Wed, 19 Mar 2025 15:30:39 GMT
|
12
|
+
|
13
|
+
_Version update only_
|
14
|
+
|
15
|
+
## 4.10.10
|
16
|
+
Tue, 11 Mar 2025 15:25:11 GMT
|
17
|
+
|
18
|
+
_Version update only_
|
19
|
+
|
20
|
+
## 4.10.9
|
21
|
+
Tue, 11 Mar 2025 05:17:33 GMT
|
22
|
+
|
23
|
+
_Version update only_
|
24
|
+
|
25
|
+
## 4.10.8
|
26
|
+
Thu, 06 Mar 2025 14:13:37 GMT
|
27
|
+
|
28
|
+
_Version update only_
|
29
|
+
|
30
|
+
## 4.10.7
|
31
|
+
Tue, 18 Feb 2025 17:27:03 GMT
|
32
|
+
|
33
|
+
_Version update only_
|
34
|
+
|
35
|
+
## 4.10.6
|
36
|
+
Fri, 24 Jan 2025 08:02:40 GMT
|
37
|
+
|
38
|
+
_Version update only_
|
39
|
+
|
40
|
+
## 4.10.5
|
41
|
+
Tue, 21 Jan 2025 21:56:45 GMT
|
42
|
+
|
43
|
+
_Version update only_
|
44
|
+
|
45
|
+
## 4.10.4
|
46
|
+
Mon, 13 Jan 2025 14:06:43 GMT
|
47
|
+
|
48
|
+
_Version update only_
|
49
|
+
|
50
|
+
## 4.10.3
|
51
|
+
Mon, 06 Jan 2025 14:00:13 GMT
|
52
|
+
|
53
|
+
### Updates
|
54
|
+
|
55
|
+
- add temporary fix for typedoc@0.26 issue #2802
|
56
|
+
|
57
|
+
## 4.10.2
|
58
|
+
Thu, 21 Nov 2024 15:22:20 GMT
|
59
|
+
|
60
|
+
### Updates
|
61
|
+
|
62
|
+
- Bumped `cross-spawn` to `7.0.5`
|
63
|
+
|
64
|
+
## 4.10.1
|
65
|
+
Thu, 14 Nov 2024 18:11:00 GMT
|
66
|
+
|
67
|
+
### Updates
|
68
|
+
|
69
|
+
- Bump `typedoc` dependency to a version that supports typescript `5.6`.
|
70
|
+
- Deprecate unused --includes flag
|
71
|
+
|
72
|
+
## 4.10.0
|
73
|
+
Wed, 13 Nov 2024 15:23:38 GMT
|
74
|
+
|
75
|
+
### Updates
|
76
|
+
|
77
|
+
- Allow specifying a relative directory for the `entry` argument in the `extract-api` command.
|
78
|
+
|
79
|
+
## 4.9.7
|
80
|
+
Wed, 06 Nov 2024 19:23:04 GMT
|
81
|
+
|
82
|
+
_Version update only_
|
4
83
|
|
5
84
|
## 4.9.6
|
6
85
|
Tue, 05 Nov 2024 15:22:45 GMT
|
package/bin/betools.js
CHANGED
@@ -32,7 +32,7 @@ yargs.strict(true)
|
|
32
32
|
describe: "Specify a baseUrl to resolve modules"
|
33
33
|
},
|
34
34
|
"includes": {
|
35
|
-
describe: "
|
35
|
+
describe: "Deprecated - this flag does nothing and will be removed in @itwin/build-tools 5.x"
|
36
36
|
},
|
37
37
|
"excludes": {
|
38
38
|
describe: "Specify a directory, filename, or pattern to be excluded"
|
@@ -48,7 +48,10 @@ yargs.strict(true)
|
|
48
48
|
},
|
49
49
|
"onlyJson": {
|
50
50
|
describe: "Specify a baseUrl to resolve modules"
|
51
|
-
}
|
51
|
+
},
|
52
|
+
"tsconfig": {
|
53
|
+
describe: "Specify a path to `tsconfig.json` configuration file used to build the package. Defaults to `./tsconfig.json`"
|
54
|
+
},
|
52
55
|
})
|
53
56
|
},
|
54
57
|
(argv) => { docsCommand(argv) })
|
@@ -140,15 +143,16 @@ function docsCommand(options) {
|
|
140
143
|
const outOpt = options.out ? ["--out", options.out] : [];
|
141
144
|
const jsonOpt = options.json ? ["--json", options.json] : [];
|
142
145
|
const baseUrlOpt = options.baseUrl ? ["--baseUrl", options.baseUrl] : [];
|
143
|
-
const includesOpt = options.includes ? ["--includes", options.includes] : [];
|
144
146
|
const excludesOpt = options.excludes ? ["--excludes", options.excludes] : [];
|
145
147
|
const excludesGlobOpt = options.excludeGlob ? ["--excludeGlob", options.excludeGlob] : [];
|
146
148
|
const testExcludeGlobOpt = options.testExcludeGlob ? ["--testExcludeGlob", options.testExcludeGlob] : [];
|
147
149
|
const indexFileOpt = options.tsIndexFile ? ["--tsIndexFile", options.tsIndexFile] : [];
|
148
150
|
const onlyJsonOpt = options.onlyJson ? ["--onlyJson"] : [];
|
151
|
+
const tsconfigOpt = options.tsconfig ? ["--tsconfig", options.tsconfig] : [];
|
149
152
|
exec("node", [getScriptPath("docs.js"),
|
150
|
-
...sourceOpt, ...outOpt, ...jsonOpt, ...baseUrlOpt,
|
151
|
-
...excludesOpt, ...excludesGlobOpt, ...testExcludeGlobOpt,
|
153
|
+
...sourceOpt, ...outOpt, ...jsonOpt, ...baseUrlOpt,
|
154
|
+
...excludesOpt, ...excludesGlobOpt, ...testExcludeGlobOpt,
|
155
|
+
...indexFileOpt, ...onlyJsonOpt, ...tsconfigOpt]);
|
152
156
|
}
|
153
157
|
|
154
158
|
function extractCommand(options) {
|
package/mocha-reporter/index.js
CHANGED
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@itwin/build-tools",
|
3
|
-
"version": "5.0.0-dev.
|
3
|
+
"version": "5.0.0-dev.100",
|
4
4
|
"description": "Bentley build tools",
|
5
5
|
"license": "MIT",
|
6
6
|
"repository": {
|
@@ -21,30 +21,30 @@
|
|
21
21
|
"url": "http://www.bentley.com"
|
22
22
|
},
|
23
23
|
"dependencies": {
|
24
|
-
"@microsoft/api-extractor": "~7.
|
24
|
+
"@microsoft/api-extractor": "~7.49.1",
|
25
25
|
"chalk": "^3.0.0",
|
26
|
-
"cpx2": "^
|
27
|
-
"cross-spawn": "^7.0.
|
26
|
+
"cpx2": "^8.0.0",
|
27
|
+
"cross-spawn": "^7.0.5",
|
28
28
|
"fs-extra": "^8.1.0",
|
29
29
|
"glob": "^10.3.12",
|
30
|
-
"mocha": "^
|
30
|
+
"mocha": "^11.1.0",
|
31
31
|
"mocha-junit-reporter": "^2.0.2",
|
32
|
-
"rimraf": "^
|
32
|
+
"rimraf": "^6.0.1",
|
33
33
|
"tree-kill": "^1.2.2",
|
34
|
-
"typedoc": "^0.
|
35
|
-
"typedoc-plugin-merge-modules": "^
|
34
|
+
"typedoc": "^0.26.11",
|
35
|
+
"typedoc-plugin-merge-modules": "^6.0.3",
|
36
36
|
"typescript": "~5.6.2",
|
37
37
|
"wtfnode": "^0.9.1",
|
38
38
|
"yargs": "^17.4.0"
|
39
39
|
},
|
40
40
|
"devDependencies": {
|
41
41
|
"@itwin/eslint-plugin": "5.0.0-dev.1",
|
42
|
-
"@types/node": "~
|
42
|
+
"@types/node": "~20.17.0",
|
43
43
|
"eslint": "^9.13.0"
|
44
44
|
},
|
45
45
|
"scripts": {
|
46
46
|
"build": "tsc 1>&2",
|
47
|
-
"clean": "rimraf ../../modules .rush/temp/package-deps*.json",
|
47
|
+
"clean": "rimraf -g ../../modules .rush/temp/package-deps*.json",
|
48
48
|
"docs": "",
|
49
49
|
"lint": "eslint \"./src/**/*.ts\" 1>&2",
|
50
50
|
"test": "",
|
package/scripts/docs.js
CHANGED
@@ -27,7 +27,6 @@ const out = (argv.out === undefined) ? paths.appDocs : argv.out;
|
|
27
27
|
const json = (argv.json === undefined) ? paths.appJsonDocs : argv.json;
|
28
28
|
|
29
29
|
const baseUrlOptions = (argv.baseUrl === undefined) ? [] : ["--baseUrl", argv.baseUrl];
|
30
|
-
const includeOptions = (argv.includes === undefined) ? [] : ["--includes", argv.includes];
|
31
30
|
|
32
31
|
const testExclude = argv.testExcludeGlob ?? "**/*test*/**/*";
|
33
32
|
const excludeInternalFolders = "**/internal/**/*"
|
@@ -51,14 +50,15 @@ if (argv.onlyJson === undefined)
|
|
51
50
|
const readmeOption = (argv.readme === undefined) ? "none" : argv.readme;
|
52
51
|
|
53
52
|
const options = [
|
54
|
-
"--excludePrivate",
|
55
53
|
"--hideGenerator",
|
56
54
|
"--logLevel",
|
57
|
-
"Error"
|
55
|
+
"Error",
|
56
|
+
"--cascadedModifierTags", // workaround for https://github.com/TypeStrong/typedoc/issues/2802
|
57
|
+
"@experimental"
|
58
58
|
];
|
59
59
|
|
60
60
|
const pluginOptions = [
|
61
|
-
"--plugin", "typedoc-plugin-merge-modules",
|
61
|
+
"--plugin", require.resolve("typedoc-plugin-merge-modules"),
|
62
62
|
"--mergeModulesMergeMode", "module",
|
63
63
|
];
|
64
64
|
|
@@ -66,15 +66,16 @@ if (argv.name) options.push("--name", argv.name);
|
|
66
66
|
|
67
67
|
if (argv.theme) options.push("--theme", argv.theme);
|
68
68
|
|
69
|
+
if (argv.tsconfig) options.push("--tsconfig", argv.tsconfig);
|
70
|
+
|
69
71
|
const args = [
|
70
|
-
"--entryPointStrategy", "expand", path.resolve(process.cwd(), source),
|
72
|
+
"--entryPointStrategy", "expand", path.resolve(process.cwd(), source).replaceAll("\\", "/"),
|
71
73
|
...options,
|
72
74
|
...excludeArray,
|
73
75
|
...outputOptions,
|
74
76
|
"--readme", readmeOption,
|
75
77
|
...pluginOptions,
|
76
78
|
...baseUrlOptions,
|
77
|
-
...includeOptions
|
78
79
|
];
|
79
80
|
|
80
81
|
console.log("Arguments to TypeDoc: " + JSON.stringify(args, null, 2));
|