@514labs/moose-lib 0.6.267-ci-6-g7e4e6a41 → 0.6.267-ci-8-gef986654
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/browserCompatible.js.map +1 -1
- package/dist/browserCompatible.mjs.map +1 -1
- package/dist/dmv2/index.js.map +1 -1
- package/dist/dmv2/index.mjs.map +1 -1
- package/dist/index.js +1 -9
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -9
- package/dist/index.mjs.map +1 -1
- package/dist/moose-runner.js +8 -9
- package/dist/moose-runner.js.map +1 -1
- package/dist/moose-runner.mjs +8 -9
- package/dist/moose-runner.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -750,16 +750,8 @@ var loadIndex = async () => {
|
|
|
750
750
|
console.log(
|
|
751
751
|
`${workerInfo} loadIndex: registry cleared in ${Date.now() - clearStart}ms`
|
|
752
752
|
);
|
|
753
|
-
console.log(`${workerInfo} loadIndex: clearing require cache...`);
|
|
754
|
-
const cacheStart = Date.now();
|
|
755
|
-
const appDir = `${process2.cwd()}/${getSourceDir()}`;
|
|
756
|
-
Object.keys(__require.cache).forEach((key) => {
|
|
757
|
-
if (key.startsWith(appDir)) {
|
|
758
|
-
delete __require.cache[key];
|
|
759
|
-
}
|
|
760
|
-
});
|
|
761
753
|
console.log(
|
|
762
|
-
`${workerInfo} loadIndex: require cache
|
|
754
|
+
`${workerInfo} loadIndex: skipping require cache clear (preserving compiled modules)`
|
|
763
755
|
);
|
|
764
756
|
console.log(`${workerInfo} loadIndex: requiring index.ts...`);
|
|
765
757
|
const requireStart = Date.now();
|