@forgeax/engine-pack 0.1.7 → 0.1.20
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/.tsbuildinfo +1 -1
- package/dist/build.d.ts +1 -1
- package/dist/build.d.ts.map +1 -1
- package/dist/build.mjs +24 -10
- package/dist/build.mjs.map +1 -1
- package/dist/catalog-builder.d.ts +12 -0
- package/dist/catalog-builder.d.ts.map +1 -1
- package/dist/cli-asset.mjs +1 -1
- package/dist/cli-asset.mjs.map +1 -1
- package/dist/scanner.mjs +1 -1
- package/dist/scanner.mjs.map +1 -1
- package/dist/scriptable-pack-node.d.ts.map +1 -1
- package/dist/scriptable-pack-node.mjs +1 -1
- package/dist/scriptable-pack-node.mjs.map +1 -1
- package/package.json +3 -3
- package/src/__tests__/material-cook-dependencies.unit.test.ts +44 -0
- package/src/build.ts +1 -0
- package/src/catalog-builder.ts +42 -5
- package/src/scriptable-pack-node.ts +4 -1
package/dist/scanner.mjs
CHANGED
|
@@ -8319,7 +8319,7 @@ function buildTimeoutFailure(sourcePath, timeoutMs) {
|
|
|
8319
8319
|
};
|
|
8320
8320
|
}
|
|
8321
8321
|
async function loadScriptablePack(sourcePath, options = {}) {
|
|
8322
|
-
const timeoutMs = options.timeoutMs ??
|
|
8322
|
+
const timeoutMs = options.timeoutMs ?? 15e3;
|
|
8323
8323
|
const buildTimeoutMs = options.buildTimeoutMs ?? 5e3;
|
|
8324
8324
|
const executor = options.executor ?? new WorkerScriptablePackExecutor();
|
|
8325
8325
|
let disposeReason;
|