@lousy-agents/agent-shell 5.17.3 → 5.17.5
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/index.js +10 -9
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -15656,8 +15656,8 @@ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj
|
|
|
15656
15656
|
// object to store loaded and loading chunks
|
|
15657
15657
|
// undefined = chunk not loaded, null = chunk preloaded/prefetched
|
|
15658
15658
|
// [resolve, Promise] = chunk loading, 0 = chunk loaded
|
|
15659
|
-
var
|
|
15660
|
-
var
|
|
15659
|
+
var moduleInstalledChunks = {410: 0,};
|
|
15660
|
+
var moduleInstallChunk = (data) => {
|
|
15661
15661
|
var __rspack_esm_ids = data.__rspack_esm_ids;
|
|
15662
15662
|
var moreModules = data.__webpack_modules__;
|
|
15663
15663
|
var __rspack_esm_runtime = data.__rspack_esm_runtime;
|
|
@@ -15672,17 +15672,17 @@ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj
|
|
|
15672
15672
|
if (__rspack_esm_runtime) __rspack_esm_runtime(__webpack_require__);
|
|
15673
15673
|
for (; i < __rspack_esm_ids.length; i++) {
|
|
15674
15674
|
chunkId = __rspack_esm_ids[i];
|
|
15675
|
-
if (__webpack_require__.o(
|
|
15676
|
-
|
|
15675
|
+
if (__webpack_require__.o(moduleInstalledChunks, chunkId) && moduleInstalledChunks[chunkId]) {
|
|
15676
|
+
moduleInstalledChunks[chunkId][0]();
|
|
15677
15677
|
}
|
|
15678
|
-
|
|
15678
|
+
moduleInstalledChunks[__rspack_esm_ids[i]] = 0;
|
|
15679
15679
|
}
|
|
15680
15680
|
|
|
15681
15681
|
};
|
|
15682
15682
|
|
|
15683
15683
|
__webpack_require__.f.j = function (chunkId, promises) {
|
|
15684
15684
|
// import() chunk loading for javascript
|
|
15685
|
-
var installedChunkData = __webpack_require__.o(
|
|
15685
|
+
var installedChunkData = __webpack_require__.o(moduleInstalledChunks, chunkId) ? moduleInstalledChunks[chunkId] : undefined;
|
|
15686
15686
|
if (installedChunkData !== 0) { // 0 means "already installed".'
|
|
15687
15687
|
// a Promise means "currently loading".
|
|
15688
15688
|
if (installedChunkData) {
|
|
@@ -15690,18 +15690,19 @@ if (installedChunkData !== 0) { // 0 means "already installed".'
|
|
|
15690
15690
|
} else {
|
|
15691
15691
|
if (true) {
|
|
15692
15692
|
// setup Promise in chunk cache
|
|
15693
|
-
var promise = import("./" + __webpack_require__.u(chunkId)).then(
|
|
15694
|
-
if (
|
|
15693
|
+
var promise = import("./" + __webpack_require__.u(chunkId)).then(moduleInstallChunk, (e) => {
|
|
15694
|
+
if (moduleInstalledChunks[chunkId] !== 0) moduleInstalledChunks[chunkId] = undefined;
|
|
15695
15695
|
throw e;
|
|
15696
15696
|
});
|
|
15697
15697
|
var promise = Promise.race([promise, new Promise((resolve) => {
|
|
15698
|
-
installedChunkData =
|
|
15698
|
+
installedChunkData = moduleInstalledChunks[chunkId] = [resolve];
|
|
15699
15699
|
})]);
|
|
15700
15700
|
promises.push(installedChunkData[1] = promise);
|
|
15701
15701
|
}
|
|
15702
15702
|
|
|
15703
15703
|
}
|
|
15704
15704
|
}
|
|
15705
|
+
|
|
15705
15706
|
}
|
|
15706
15707
|
// no external install chunk
|
|
15707
15708
|
// no on chunks loaded
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lousy-agents/agent-shell",
|
|
3
|
-
"version": "5.17.
|
|
3
|
+
"version": "5.17.5",
|
|
4
4
|
"description": "A flight recorder for npm script execution",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"zod": "4.4.3"
|
|
41
41
|
},
|
|
42
42
|
"peerDependencies": {
|
|
43
|
-
"@github/copilot-sdk": "1.0.
|
|
43
|
+
"@github/copilot-sdk": "1.0.7"
|
|
44
44
|
},
|
|
45
45
|
"peerDependenciesMeta": {
|
|
46
46
|
"@github/copilot-sdk": {
|