@rushstack/rush-sdk 5.129.6 → 5.130.0
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/rush-lib.d.ts +23 -6
- package/{lib-shim → dist}/tsdoc-metadata.json +1 -1
- package/lib/api/CommonVersionsConfiguration.d.ts +3 -2
- package/lib/api/ExperimentsConfiguration.d.ts +7 -0
- package/lib/api/RushConfiguration.d.ts +6 -0
- package/lib/logic/RushConstants.d.ts +8 -0
- package/lib/logic/operations/AsyncOperationQueue.d.ts +3 -17
- package/lib/logic/operations/OperationExecutionRecord.d.ts +1 -0
- package/lib/logic/operations/OperationStatus.d.ts +5 -4
- package/lib/utilities/RushAlerts.d.ts +22 -0
- package/lib/utilities/RushAlerts.js +1 -0
- package/lib-commonjs/generate-stubs.d.ts +2 -0
- package/lib-commonjs/generate-stubs.d.ts.map +1 -0
- package/lib-commonjs/generate-stubs.js +84 -0
- package/lib-commonjs/generate-stubs.js.map +1 -0
- package/lib-commonjs/index.d.ts.map +1 -0
- package/lib-commonjs/index.js +207 -0
- package/lib-commonjs/index.js.map +1 -0
- package/lib-commonjs/loader.js +192 -0
- package/lib-commonjs/loader.js.map +1 -0
- package/lib-esnext/generate-stubs.js +57 -0
- package/lib-esnext/generate-stubs.js.map +1 -0
- package/lib-esnext/helpers.js +54 -0
- package/lib-esnext/helpers.js.map +1 -0
- package/lib-esnext/index.js +180 -0
- package/lib-esnext/index.js.map +1 -0
- package/lib-esnext/loader.js +165 -0
- package/lib-esnext/loader.js.map +1 -0
- package/lib-shim/commons.js +2200 -0
- package/lib-shim/commons.js.map +1 -0
- package/lib-shim/index.js +298 -184
- package/lib-shim/index.js.map +1 -1
- package/lib-shim/loader.js +228 -191
- package/lib-shim/loader.js.map +1 -1
- package/package.json +22 -9
- package/lib-shim/index.d.ts.map +0 -1
- /package/{lib-shim → lib-commonjs}/helpers.d.ts +0 -0
- /package/{lib-shim → lib-commonjs}/helpers.d.ts.map +0 -0
- /package/{lib-shim → lib-commonjs}/helpers.js +0 -0
- /package/{lib-shim → lib-commonjs}/helpers.js.map +0 -0
- /package/{lib-shim → lib-commonjs}/index.d.ts +0 -0
- /package/{lib-shim → lib-commonjs}/loader.d.ts +0 -0
- /package/{lib-shim → lib-commonjs}/loader.d.ts.map +0 -0
package/lib-shim/loader.js
CHANGED
|
@@ -1,192 +1,229 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
1
|
+
/******/ (() => { // webpackBootstrap
|
|
2
|
+
/******/ "use strict";
|
|
3
|
+
/******/ var __webpack_modules__ = ({
|
|
4
|
+
|
|
5
|
+
/***/ "@rushstack/node-core-library":
|
|
6
|
+
/*!***********************************************!*\
|
|
7
|
+
!*** external "@rushstack/node-core-library" ***!
|
|
8
|
+
\***********************************************/
|
|
9
|
+
/***/ ((module) => {
|
|
10
|
+
|
|
11
|
+
module.exports = require("@rushstack/node-core-library");
|
|
12
|
+
|
|
13
|
+
/***/ }),
|
|
14
|
+
|
|
15
|
+
/***/ "path":
|
|
16
|
+
/*!***********************!*\
|
|
17
|
+
!*** external "path" ***!
|
|
18
|
+
\***********************/
|
|
19
|
+
/***/ ((module) => {
|
|
20
|
+
|
|
21
|
+
module.exports = require("path");
|
|
22
|
+
|
|
23
|
+
/***/ })
|
|
24
|
+
|
|
25
|
+
/******/ });
|
|
26
|
+
/************************************************************************/
|
|
27
|
+
/******/ // The module cache
|
|
28
|
+
/******/ var __webpack_module_cache__ = {};
|
|
29
|
+
/******/
|
|
30
|
+
/******/ // The require function
|
|
31
|
+
/******/ function __webpack_require__(moduleId) {
|
|
32
|
+
/******/ // Check if module is in cache
|
|
33
|
+
/******/ var cachedModule = __webpack_module_cache__[moduleId];
|
|
34
|
+
/******/ if (cachedModule !== undefined) {
|
|
35
|
+
/******/ return cachedModule.exports;
|
|
36
|
+
/******/ }
|
|
37
|
+
/******/ // Create a new module (and put it into the cache)
|
|
38
|
+
/******/ var module = __webpack_module_cache__[moduleId] = {
|
|
39
|
+
/******/ id: moduleId,
|
|
40
|
+
/******/ loaded: false,
|
|
41
|
+
/******/ exports: {}
|
|
42
|
+
/******/ };
|
|
43
|
+
/******/
|
|
44
|
+
/******/ // Execute the module function
|
|
45
|
+
/******/ __webpack_modules__[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
|
46
|
+
/******/
|
|
47
|
+
/******/ // Flag the module as loaded
|
|
48
|
+
/******/ module.loaded = true;
|
|
49
|
+
/******/
|
|
50
|
+
/******/ // Return the exports of the module
|
|
51
|
+
/******/ return module.exports;
|
|
52
|
+
/******/ }
|
|
53
|
+
/******/
|
|
54
|
+
/******/ // expose the modules object (__webpack_modules__)
|
|
55
|
+
/******/ __webpack_require__.m = __webpack_modules__;
|
|
56
|
+
/******/
|
|
57
|
+
/******/ // the startup function
|
|
58
|
+
/******/ __webpack_require__.x = () => {
|
|
59
|
+
/******/ // Load entry module and return exports
|
|
60
|
+
/******/ // This entry module depends on other loaded chunks and execution need to be delayed
|
|
61
|
+
/******/ var __webpack_exports__ = __webpack_require__.O(undefined, ["commons"], () => (__webpack_require__("./lib-commonjs/loader.js")))
|
|
62
|
+
/******/ __webpack_exports__ = __webpack_require__.O(__webpack_exports__);
|
|
63
|
+
/******/ return __webpack_exports__;
|
|
64
|
+
/******/ };
|
|
65
|
+
/******/
|
|
66
|
+
/************************************************************************/
|
|
67
|
+
/******/ /* webpack/runtime/chunk loaded */
|
|
68
|
+
/******/ (() => {
|
|
69
|
+
/******/ var deferred = [];
|
|
70
|
+
/******/ __webpack_require__.O = (result, chunkIds, fn, priority) => {
|
|
71
|
+
/******/ if(chunkIds) {
|
|
72
|
+
/******/ priority = priority || 0;
|
|
73
|
+
/******/ for(var i = deferred.length; i > 0 && deferred[i - 1][2] > priority; i--) deferred[i] = deferred[i - 1];
|
|
74
|
+
/******/ deferred[i] = [chunkIds, fn, priority];
|
|
75
|
+
/******/ return;
|
|
76
|
+
/******/ }
|
|
77
|
+
/******/ var notFulfilled = Infinity;
|
|
78
|
+
/******/ for (var i = 0; i < deferred.length; i++) {
|
|
79
|
+
/******/ var [chunkIds, fn, priority] = deferred[i];
|
|
80
|
+
/******/ var fulfilled = true;
|
|
81
|
+
/******/ for (var j = 0; j < chunkIds.length; j++) {
|
|
82
|
+
/******/ if ((priority & 1 === 0 || notFulfilled >= priority) && Object.keys(__webpack_require__.O).every((key) => (__webpack_require__.O[key](chunkIds[j])))) {
|
|
83
|
+
/******/ chunkIds.splice(j--, 1);
|
|
84
|
+
/******/ } else {
|
|
85
|
+
/******/ fulfilled = false;
|
|
86
|
+
/******/ if(priority < notFulfilled) notFulfilled = priority;
|
|
87
|
+
/******/ }
|
|
88
|
+
/******/ }
|
|
89
|
+
/******/ if(fulfilled) {
|
|
90
|
+
/******/ deferred.splice(i--, 1)
|
|
91
|
+
/******/ var r = fn();
|
|
92
|
+
/******/ if (r !== undefined) result = r;
|
|
93
|
+
/******/ }
|
|
94
|
+
/******/ }
|
|
95
|
+
/******/ return result;
|
|
96
|
+
/******/ };
|
|
97
|
+
/******/ })();
|
|
98
|
+
/******/
|
|
99
|
+
/******/ /* webpack/runtime/compat get default export */
|
|
100
|
+
/******/ (() => {
|
|
101
|
+
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
|
102
|
+
/******/ __webpack_require__.n = (module) => {
|
|
103
|
+
/******/ var getter = module && module.__esModule ?
|
|
104
|
+
/******/ () => (module['default']) :
|
|
105
|
+
/******/ () => (module);
|
|
106
|
+
/******/ __webpack_require__.d(getter, { a: getter });
|
|
107
|
+
/******/ return getter;
|
|
108
|
+
/******/ };
|
|
109
|
+
/******/ })();
|
|
110
|
+
/******/
|
|
111
|
+
/******/ /* webpack/runtime/define property getters */
|
|
112
|
+
/******/ (() => {
|
|
113
|
+
/******/ // define getter functions for harmony exports
|
|
114
|
+
/******/ __webpack_require__.d = (exports, definition) => {
|
|
115
|
+
/******/ for(var key in definition) {
|
|
116
|
+
/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
|
|
117
|
+
/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
|
|
118
|
+
/******/ }
|
|
119
|
+
/******/ }
|
|
120
|
+
/******/ };
|
|
121
|
+
/******/ })();
|
|
122
|
+
/******/
|
|
123
|
+
/******/ /* webpack/runtime/ensure chunk */
|
|
124
|
+
/******/ (() => {
|
|
125
|
+
/******/ __webpack_require__.f = {};
|
|
126
|
+
/******/ // This file contains only the entry chunk.
|
|
127
|
+
/******/ // The chunk loading function for additional chunks
|
|
128
|
+
/******/ __webpack_require__.e = (chunkId) => {
|
|
129
|
+
/******/ return Promise.all(Object.keys(__webpack_require__.f).reduce((promises, key) => {
|
|
130
|
+
/******/ __webpack_require__.f[key](chunkId, promises);
|
|
131
|
+
/******/ return promises;
|
|
132
|
+
/******/ }, []));
|
|
133
|
+
/******/ };
|
|
134
|
+
/******/ })();
|
|
135
|
+
/******/
|
|
136
|
+
/******/ /* webpack/runtime/get javascript chunk filename */
|
|
137
|
+
/******/ (() => {
|
|
138
|
+
/******/ // This function allow to reference async chunks and sibling chunks for the entrypoint
|
|
139
|
+
/******/ __webpack_require__.u = (chunkId) => {
|
|
140
|
+
/******/ // return url for filenames based on template
|
|
141
|
+
/******/ return "" + chunkId + ".js";
|
|
142
|
+
/******/ };
|
|
143
|
+
/******/ })();
|
|
144
|
+
/******/
|
|
145
|
+
/******/ /* webpack/runtime/hasOwnProperty shorthand */
|
|
146
|
+
/******/ (() => {
|
|
147
|
+
/******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
|
|
148
|
+
/******/ })();
|
|
149
|
+
/******/
|
|
150
|
+
/******/ /* webpack/runtime/make namespace object */
|
|
151
|
+
/******/ (() => {
|
|
152
|
+
/******/ // define __esModule on exports
|
|
153
|
+
/******/ __webpack_require__.r = (exports) => {
|
|
154
|
+
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
|
155
|
+
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
156
|
+
/******/ }
|
|
157
|
+
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
|
158
|
+
/******/ };
|
|
159
|
+
/******/ })();
|
|
160
|
+
/******/
|
|
161
|
+
/******/ /* webpack/runtime/node module decorator */
|
|
162
|
+
/******/ (() => {
|
|
163
|
+
/******/ __webpack_require__.nmd = (module) => {
|
|
164
|
+
/******/ module.paths = [];
|
|
165
|
+
/******/ if (!module.children) module.children = [];
|
|
166
|
+
/******/ return module;
|
|
167
|
+
/******/ };
|
|
168
|
+
/******/ })();
|
|
169
|
+
/******/
|
|
170
|
+
/******/ /* webpack/runtime/require chunk loading */
|
|
171
|
+
/******/ (() => {
|
|
172
|
+
/******/ // no baseURI
|
|
173
|
+
/******/
|
|
174
|
+
/******/ // object to store loaded chunks
|
|
175
|
+
/******/ // "1" means "loaded", otherwise not loaded yet
|
|
176
|
+
/******/ var installedChunks = {
|
|
177
|
+
/******/ "loader": 1
|
|
178
|
+
/******/ };
|
|
179
|
+
/******/
|
|
180
|
+
/******/ __webpack_require__.O.require = (chunkId) => (installedChunks[chunkId]);
|
|
181
|
+
/******/
|
|
182
|
+
/******/ var installChunk = (chunk) => {
|
|
183
|
+
/******/ var moreModules = chunk.modules, chunkIds = chunk.ids, runtime = chunk.runtime;
|
|
184
|
+
/******/ for(var moduleId in moreModules) {
|
|
185
|
+
/******/ if(__webpack_require__.o(moreModules, moduleId)) {
|
|
186
|
+
/******/ __webpack_require__.m[moduleId] = moreModules[moduleId];
|
|
187
|
+
/******/ }
|
|
188
|
+
/******/ }
|
|
189
|
+
/******/ if(runtime) runtime(__webpack_require__);
|
|
190
|
+
/******/ for(var i = 0; i < chunkIds.length; i++)
|
|
191
|
+
/******/ installedChunks[chunkIds[i]] = 1;
|
|
192
|
+
/******/ __webpack_require__.O();
|
|
193
|
+
/******/ };
|
|
194
|
+
/******/
|
|
195
|
+
/******/ // require() chunk loading for javascript
|
|
196
|
+
/******/ __webpack_require__.f.require = (chunkId, promises) => {
|
|
197
|
+
/******/ // "1" is the signal for "already loaded"
|
|
198
|
+
/******/ if(!installedChunks[chunkId]) {
|
|
199
|
+
/******/ if(true) { // all chunks have JS
|
|
200
|
+
/******/ installChunk(require("./" + __webpack_require__.u(chunkId)));
|
|
201
|
+
/******/ } else installedChunks[chunkId] = 1;
|
|
202
|
+
/******/ }
|
|
203
|
+
/******/ };
|
|
204
|
+
/******/
|
|
205
|
+
/******/ // no external install chunk
|
|
206
|
+
/******/
|
|
207
|
+
/******/ // no HMR
|
|
208
|
+
/******/
|
|
209
|
+
/******/ // no HMR manifest
|
|
210
|
+
/******/ })();
|
|
211
|
+
/******/
|
|
212
|
+
/******/ /* webpack/runtime/startup chunk dependencies */
|
|
213
|
+
/******/ (() => {
|
|
214
|
+
/******/ var next = __webpack_require__.x;
|
|
215
|
+
/******/ __webpack_require__.x = () => {
|
|
216
|
+
/******/ __webpack_require__.e("commons");
|
|
217
|
+
/******/ return next();
|
|
218
|
+
/******/ };
|
|
219
|
+
/******/ })();
|
|
220
|
+
/******/
|
|
221
|
+
/************************************************************************/
|
|
222
|
+
/******/
|
|
223
|
+
/******/ // run startup
|
|
224
|
+
/******/ var __webpack_exports__ = __webpack_require__.x();
|
|
225
|
+
/******/ module.exports = __webpack_exports__;
|
|
226
|
+
/******/
|
|
227
|
+
/******/ })()
|
|
228
|
+
;
|
|
192
229
|
//# sourceMappingURL=loader.js.map
|
package/lib-shim/loader.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"loader.js","sourceRoot":"","sources":["../src/loader.ts"],"names":[],"mappings":"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","sourcesContent":["// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.\n// See LICENSE in the project root for license information.\n\nimport * as path from 'path';\nimport type { SpawnSyncReturns } from 'child_process';\nimport { JsonFile, type JsonObject, Executable } from '@rushstack/node-core-library';\n\nimport {\n tryFindRushJsonLocation,\n RUSH_LIB_NAME,\n type RushLibModuleType,\n requireRushLibUnderFolderPath,\n sdkContext\n} from './helpers';\n\ndeclare const global: typeof globalThis & {\n ___rush___rushLibModule?: RushLibModuleType;\n ___rush___rushLibModuleFromEnvironment?: RushLibModuleType;\n ___rush___rushLibModuleFromInstallAndRunRush?: RushLibModuleType;\n};\n\n/**\n * Type of {@link ISdkCallbackEvent.logMessage}\n * @public\n */\nexport interface IProgressBarCallbackLogMessage {\n /**\n * A status message to print in the log window, or `undefined` if there are\n * no further messages. This string may contain newlines.\n */\n text: string;\n\n /**\n * The type of message. More message types may be added in the future.\n */\n kind: 'info' | 'debug';\n}\n\n/**\n * Event options for {@link ILoadSdkAsyncOptions.onNotifyEvent}\n * @public\n */\nexport interface ISdkCallbackEvent {\n /**\n * Allows the caller to display log information about the operation.\n */\n logMessage: IProgressBarCallbackLogMessage | undefined;\n\n /**\n * Allows the caller to display a progress bar for long-running operations.\n *\n * @remarks\n * If a long-running operation is required, then `progressPercent` will\n * start at 0.0 and count upwards and finish at 100.0 if the operation completes\n * successfully. If the long-running operation has not yet started, or\n * is not required, then the value will be `undefined`.\n */\n progressPercent: number | undefined;\n}\n\n/**\n * Type of {@link ILoadSdkAsyncOptions.onNotifyEvent}\n * @public\n */\nexport type SdkNotifyEventCallback = (sdkEvent: ISdkCallbackEvent) => void;\n\n/**\n * Options for {@link RushSdkLoader.loadAsync}\n * @public\n */\nexport interface ILoadSdkAsyncOptions {\n /**\n * The folder to start from when searching for the Rush workspace configuration.\n * If this folder does not contain a `rush.json` file, then each parent folder\n * will be searched. If `rush.json` is not found, then the SDK fails to load.\n */\n rushJsonSearchFolder?: string;\n\n /**\n * A cancellation token that the caller can use to prematurely abort the operation.\n */\n abortSignal?: AbortSignal;\n\n /**\n * Allows the caller to monitor the progress of the operation.\n */\n onNotifyEvent?: SdkNotifyEventCallback;\n}\n\n/**\n * Exposes operations that control how the `@microsoft/rush-lib` engine is\n * located and loaded.\n * @public\n */\nexport class RushSdkLoader {\n /**\n * Throws an \"AbortError\" exception if abortSignal.aborted is true.\n */\n private static _checkForCancel(\n abortSignal: AbortSignal,\n onNotifyEvent: SdkNotifyEventCallback | undefined,\n progressPercent: number | undefined\n ): void {\n if (!abortSignal?.aborted) {\n return;\n }\n\n if (onNotifyEvent) {\n onNotifyEvent({\n logMessage: {\n kind: 'info',\n text: `The operation was canceled`\n },\n progressPercent\n });\n }\n\n const error: Error = new Error('The operation was canceled');\n error.name = 'AbortError';\n throw error;\n }\n\n /**\n * Returns true if the Rush engine has already been loaded.\n */\n public static get isLoaded(): boolean {\n return sdkContext.rushLibModule !== undefined;\n }\n\n /**\n * Manually load the Rush engine based on rush.json found for `rushJsonSearchFolder`.\n * Throws an exception if {@link RushSdkLoader.isLoaded} is already `true`.\n *\n * @remarks\n * This API supports an callback that can be used display a progress bar,\n * log of operations, and allow the operation to be canceled prematurely.\n */\n public static async loadAsync(options?: ILoadSdkAsyncOptions): Promise<void> {\n // SCENARIO 5: The rush-lib engine is loaded manually using rushSdkLoader.loadAsync().\n\n if (!options) {\n options = {};\n }\n\n if (RushSdkLoader.isLoaded) {\n throw new Error('RushSdkLoader.loadAsync() failed because the Rush engine has already been loaded');\n }\n\n const onNotifyEvent: SdkNotifyEventCallback | undefined = options.onNotifyEvent;\n let progressPercent: number | undefined = undefined;\n\n const abortSignal: AbortSignal | undefined = options.abortSignal;\n\n try {\n const rushJsonSearchFolder: string = options.rushJsonSearchFolder ?? process.cwd();\n\n if (onNotifyEvent) {\n onNotifyEvent({\n logMessage: {\n kind: 'debug',\n text: `Searching for rush.json starting from: ` + rushJsonSearchFolder\n },\n progressPercent\n });\n }\n\n const rushJsonPath: string | undefined = tryFindRushJsonLocation(rushJsonSearchFolder);\n if (!rushJsonPath) {\n throw new Error(\n 'Unable to find rush.json in the specified folder or its parent folders:\\n' +\n `${rushJsonSearchFolder}\\n`\n );\n }\n const monorepoRoot: string = path.dirname(rushJsonPath);\n\n const rushJson: JsonObject = await JsonFile.loadAsync(rushJsonPath);\n const { rushVersion } = rushJson;\n\n const installRunNodeModuleFolder: string = path.join(\n monorepoRoot,\n `common/temp/install-run/@microsoft+rush@${rushVersion}`\n );\n\n try {\n // First, try to load the version of \"rush-lib\" that was installed by install-run-rush.js\n if (onNotifyEvent) {\n onNotifyEvent({\n logMessage: {\n kind: 'info',\n text: `Trying to load ${RUSH_LIB_NAME} installed by install-run-rush`\n },\n progressPercent\n });\n }\n sdkContext.rushLibModule = requireRushLibUnderFolderPath(installRunNodeModuleFolder);\n } catch (e1) {\n let installAndRunRushStderrContent: string = '';\n try {\n const installAndRunRushJSPath: string = path.join(\n monorepoRoot,\n 'common/scripts/install-run-rush.js'\n );\n\n if (onNotifyEvent) {\n onNotifyEvent({\n logMessage: {\n kind: 'info',\n text: 'The Rush engine has not been installed yet. Invoking install-run-rush.js...'\n },\n progressPercent\n });\n }\n\n // Start the installation\n progressPercent = 0;\n\n const installAndRunRushProcess: SpawnSyncReturns<string> = Executable.spawnSync(\n 'node',\n [installAndRunRushJSPath, '--help'],\n {\n stdio: 'pipe'\n }\n );\n\n installAndRunRushStderrContent = installAndRunRushProcess.stderr;\n if (installAndRunRushProcess.status !== 0) {\n throw new Error(`The ${RUSH_LIB_NAME} package failed to install`);\n }\n\n if (abortSignal) {\n RushSdkLoader._checkForCancel(abortSignal, onNotifyEvent, progressPercent);\n }\n\n // TODO: Implement incremental progress updates\n progressPercent = 90;\n\n // Retry to load \"rush-lib\" after install-run-rush run\n if (onNotifyEvent) {\n onNotifyEvent({\n logMessage: {\n kind: 'debug',\n text: `Trying to load ${RUSH_LIB_NAME} installed by install-run-rush a second time`\n },\n progressPercent\n });\n }\n\n sdkContext.rushLibModule = requireRushLibUnderFolderPath(installRunNodeModuleFolder);\n\n progressPercent = 100;\n } catch (e2) {\n // eslint-disable-next-line no-console\n console.error(`${installAndRunRushStderrContent}`);\n throw new Error(`The ${RUSH_LIB_NAME} package failed to load`);\n }\n }\n\n if (sdkContext.rushLibModule !== undefined) {\n // to track which scenario is active and how it got initialized.\n global.___rush___rushLibModuleFromInstallAndRunRush = sdkContext.rushLibModule;\n if (onNotifyEvent) {\n onNotifyEvent({\n logMessage: {\n kind: 'debug',\n text: `Loaded ${RUSH_LIB_NAME} installed by install-run-rush`\n },\n progressPercent\n });\n }\n }\n } catch (e) {\n if (onNotifyEvent) {\n onNotifyEvent({\n logMessage: {\n kind: 'info',\n text: 'The operation failed: ' + (e.message ?? 'An unknown error occurred')\n },\n progressPercent\n });\n }\n throw e;\n }\n }\n}\n"]}
|
|
1
|
+
{"version":3,"file":"loader.js","mappings":";;;;;;;;;;AAAA;;;;;;;;;;ACAA;;;;;;UCAA;UACA;;UAEA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;;UAEA;UACA;;UAEA;UACA;;UAEA;UACA;UACA;;UAEA;UACA;;UAEA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;;;;;WCrCA;WACA;WACA;WACA;WACA,+BAA+B,wCAAwC;WACvE;WACA;WACA;WACA;WACA,iBAAiB,qBAAqB;WACtC;WACA;WACA,kBAAkB,qBAAqB;WACvC;WACA;WACA,KAAK;WACL;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;;;;;WC3BA;WACA;WACA;WACA;WACA;WACA,iCAAiC,WAAW;WAC5C;WACA;;;;;WCPA;WACA;WACA;WACA;WACA,yCAAyC,wCAAwC;WACjF;WACA;WACA;;;;;WCPA;WACA;WACA;WACA;WACA;WACA;WACA;WACA,EAAE;WACF;;;;;WCRA;WACA;WACA;WACA;WACA;;;;;WCJA;;;;;WCAA;WACA;WACA;WACA,uDAAuD,iBAAiB;WACxE;WACA,gDAAgD,aAAa;WAC7D;;;;;WCNA;WACA;WACA;WACA;WACA;;;;;WCJA;;WAEA;WACA;WACA;WACA;WACA;;WAEA;;WAEA;WACA;WACA;WACA;WACA;WACA;WACA;WACA;WACA,gBAAgB,qBAAqB;WACrC;WACA;WACA;;WAEA;WACA;WACA;WACA;WACA,aAAa;WACb;WACA,IAAI;WACJ;WACA;;WAEA;;WAEA;;WAEA;;;;;WCrCA;WACA;WACA;WACA;WACA;;;;;UEJA;UACA","sources":["webpack://@rushstack/rush-sdk/external commonjs \"@rushstack/node-core-library\"","webpack://@rushstack/rush-sdk/external node-commonjs \"path\"","webpack://@rushstack/rush-sdk/webpack/bootstrap","webpack://@rushstack/rush-sdk/webpack/runtime/chunk loaded","webpack://@rushstack/rush-sdk/webpack/runtime/compat get default export","webpack://@rushstack/rush-sdk/webpack/runtime/define property getters","webpack://@rushstack/rush-sdk/webpack/runtime/ensure chunk","webpack://@rushstack/rush-sdk/webpack/runtime/get javascript chunk filename","webpack://@rushstack/rush-sdk/webpack/runtime/hasOwnProperty shorthand","webpack://@rushstack/rush-sdk/webpack/runtime/make namespace object","webpack://@rushstack/rush-sdk/webpack/runtime/node module decorator","webpack://@rushstack/rush-sdk/webpack/runtime/require chunk loading","webpack://@rushstack/rush-sdk/webpack/runtime/startup chunk dependencies","webpack://@rushstack/rush-sdk/webpack/before-startup","webpack://@rushstack/rush-sdk/webpack/startup","webpack://@rushstack/rush-sdk/webpack/after-startup"],"sourcesContent":["module.exports = require(\"@rushstack/node-core-library\");","module.exports = require(\"path\");","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\tid: moduleId,\n\t\tloaded: false,\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n\t// Flag the module as loaded\n\tmodule.loaded = true;\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n// expose the modules object (__webpack_modules__)\n__webpack_require__.m = __webpack_modules__;\n\n// the startup function\n__webpack_require__.x = () => {\n\t// Load entry module and return exports\n\t// This entry module depends on other loaded chunks and execution need to be delayed\n\tvar __webpack_exports__ = __webpack_require__.O(undefined, [\"commons\"], () => (__webpack_require__(\"./lib-commonjs/loader.js\")))\n\t__webpack_exports__ = __webpack_require__.O(__webpack_exports__);\n\treturn __webpack_exports__;\n};\n\n","var deferred = [];\n__webpack_require__.O = (result, chunkIds, fn, priority) => {\n\tif(chunkIds) {\n\t\tpriority = priority || 0;\n\t\tfor(var i = deferred.length; i > 0 && deferred[i - 1][2] > priority; i--) deferred[i] = deferred[i - 1];\n\t\tdeferred[i] = [chunkIds, fn, priority];\n\t\treturn;\n\t}\n\tvar notFulfilled = Infinity;\n\tfor (var i = 0; i < deferred.length; i++) {\n\t\tvar [chunkIds, fn, priority] = deferred[i];\n\t\tvar fulfilled = true;\n\t\tfor (var j = 0; j < chunkIds.length; j++) {\n\t\t\tif ((priority & 1 === 0 || notFulfilled >= priority) && Object.keys(__webpack_require__.O).every((key) => (__webpack_require__.O[key](chunkIds[j])))) {\n\t\t\t\tchunkIds.splice(j--, 1);\n\t\t\t} else {\n\t\t\t\tfulfilled = false;\n\t\t\t\tif(priority < notFulfilled) notFulfilled = priority;\n\t\t\t}\n\t\t}\n\t\tif(fulfilled) {\n\t\t\tdeferred.splice(i--, 1)\n\t\t\tvar r = fn();\n\t\t\tif (r !== undefined) result = r;\n\t\t}\n\t}\n\treturn result;\n};","// getDefaultExport function for compatibility with non-harmony modules\n__webpack_require__.n = (module) => {\n\tvar getter = module && module.__esModule ?\n\t\t() => (module['default']) :\n\t\t() => (module);\n\t__webpack_require__.d(getter, { a: getter });\n\treturn getter;\n};","// define getter functions for harmony exports\n__webpack_require__.d = (exports, definition) => {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.f = {};\n// This file contains only the entry chunk.\n// The chunk loading function for additional chunks\n__webpack_require__.e = (chunkId) => {\n\treturn Promise.all(Object.keys(__webpack_require__.f).reduce((promises, key) => {\n\t\t__webpack_require__.f[key](chunkId, promises);\n\t\treturn promises;\n\t}, []));\n};","// This function allow to reference async chunks and sibling chunks for the entrypoint\n__webpack_require__.u = (chunkId) => {\n\t// return url for filenames based on template\n\treturn \"\" + chunkId + \".js\";\n};","__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))","// define __esModule on exports\n__webpack_require__.r = (exports) => {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","__webpack_require__.nmd = (module) => {\n\tmodule.paths = [];\n\tif (!module.children) module.children = [];\n\treturn module;\n};","// no baseURI\n\n// object to store loaded chunks\n// \"1\" means \"loaded\", otherwise not loaded yet\nvar installedChunks = {\n\t\"loader\": 1\n};\n\n__webpack_require__.O.require = (chunkId) => (installedChunks[chunkId]);\n\nvar installChunk = (chunk) => {\n\tvar moreModules = chunk.modules, chunkIds = chunk.ids, runtime = chunk.runtime;\n\tfor(var moduleId in moreModules) {\n\t\tif(__webpack_require__.o(moreModules, moduleId)) {\n\t\t\t__webpack_require__.m[moduleId] = moreModules[moduleId];\n\t\t}\n\t}\n\tif(runtime) runtime(__webpack_require__);\n\tfor(var i = 0; i < chunkIds.length; i++)\n\t\tinstalledChunks[chunkIds[i]] = 1;\n\t__webpack_require__.O();\n};\n\n// require() chunk loading for javascript\n__webpack_require__.f.require = (chunkId, promises) => {\n\t// \"1\" is the signal for \"already loaded\"\n\tif(!installedChunks[chunkId]) {\n\t\tif(true) { // all chunks have JS\n\t\t\tinstallChunk(require(\"./\" + __webpack_require__.u(chunkId)));\n\t\t} else installedChunks[chunkId] = 1;\n\t}\n};\n\n// no external install chunk\n\n// no HMR\n\n// no HMR manifest","var next = __webpack_require__.x;\n__webpack_require__.x = () => {\n\t__webpack_require__.e(\"commons\");\n\treturn next();\n};","","// run startup\nvar __webpack_exports__ = __webpack_require__.x();\n",""],"names":[],"sourceRoot":""}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rushstack/rush-sdk",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.130.0",
|
|
4
4
|
"description": "An API for interacting with the Rush engine",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -11,8 +11,18 @@
|
|
|
11
11
|
"main": "lib-shim/index.js",
|
|
12
12
|
"typings": "dist/rush-lib.d.ts",
|
|
13
13
|
"exports": {
|
|
14
|
-
".":
|
|
15
|
-
|
|
14
|
+
".": {
|
|
15
|
+
"types": "./dist/rush-lib.d.ts",
|
|
16
|
+
"default": "./lib-shim/index.js"
|
|
17
|
+
},
|
|
18
|
+
"./loader": {
|
|
19
|
+
"types": "./dist/loader.d.ts",
|
|
20
|
+
"default": "./lib-shim/loader.js"
|
|
21
|
+
},
|
|
22
|
+
"./lib/*": {
|
|
23
|
+
"types": "./lib/*.d.ts",
|
|
24
|
+
"default": "./lib/*.js"
|
|
25
|
+
}
|
|
16
26
|
},
|
|
17
27
|
"typesVersions": {
|
|
18
28
|
"*": {
|
|
@@ -25,17 +35,20 @@
|
|
|
25
35
|
"dependencies": {
|
|
26
36
|
"@types/node-fetch": "2.6.2",
|
|
27
37
|
"tapable": "2.2.1",
|
|
28
|
-
"@rushstack/node-core-library": "5.
|
|
29
|
-
"@rushstack/terminal": "0.13.
|
|
38
|
+
"@rushstack/node-core-library": "5.5.0",
|
|
39
|
+
"@rushstack/terminal": "0.13.2"
|
|
30
40
|
},
|
|
31
41
|
"devDependencies": {
|
|
32
42
|
"@types/semver": "7.5.0",
|
|
33
43
|
"@types/webpack-env": "1.18.0",
|
|
34
|
-
"
|
|
44
|
+
"webpack": "~5.82.1",
|
|
45
|
+
"@microsoft/rush-lib": "5.130.0",
|
|
35
46
|
"local-node-rig": "1.0.0",
|
|
36
|
-
"@
|
|
37
|
-
"@rushstack/stream-collator": "4.1.
|
|
38
|
-
"@rushstack/
|
|
47
|
+
"@rushstack/heft": "0.66.22",
|
|
48
|
+
"@rushstack/stream-collator": "4.1.60",
|
|
49
|
+
"@rushstack/heft-webpack5-plugin": "0.10.4",
|
|
50
|
+
"@rushstack/ts-command-line": "4.22.2",
|
|
51
|
+
"@rushstack/webpack-preserve-dynamic-require-plugin": "0.11.59"
|
|
39
52
|
},
|
|
40
53
|
"scripts": {
|
|
41
54
|
"build": "heft build --clean",
|
package/lib-shim/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AA8MA;;GAEG;AACH,wBAAgB,2BAA2B,CAAC,aAAa,EAAE,MAAM,GAAG,OAAO,CAO1E"}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|