New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@farmfe/runtime

Package Overview
Dependencies
Maintainers
0
Versions
44
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@farmfe/runtime - npm Package Compare versions

Comparing version 0.12.4 to 0.12.5

6

CHANGELOG.md
# @farmfe/runtime
## 0.12.5
### Patch Changes
- 772381b0: Fix concurrent lazy compilation failed
## 0.12.4

@@ -4,0 +10,0 @@

2

package.json
{
"name": "@farmfe/runtime",
"version": "0.12.4",
"version": "0.12.5",
"description": "Runtime of Farm",

@@ -5,0 +5,0 @@ "author": {

@@ -157,3 +157,2 @@ import { Module } from "./module";

if (force) {
this.reRegisterModules = true;
this.clearCache(moduleId);

@@ -165,3 +164,12 @@ }

if (force) {
const resourceLoaded = this.resourceLoader.isResourceLoaded(resource.path);
this.resourceLoader.setLoadedResource(resource.path, false);
if (resourceLoaded) {
return this.resourceLoader.load({
...resource,
// force reload the resource
path: `${resource.path}?t=${Date.now()}`
});
}
}

@@ -177,3 +185,2 @@ return this.resourceLoader.load(resource);

}
this.reRegisterModules = false;
const result = this.require(moduleId);

@@ -180,0 +187,0 @@ // if the module is async, return the default export, the default export should be a promise

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc