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

@module-federation/dts-plugin

Package Overview
Dependencies
Maintainers
7
Versions
536
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@module-federation/dts-plugin - npm Package Compare versions

Comparing version 0.0.0-next-20250121103600 to 0.0.0-next-20250121111439

27

dist/esm/index.js

@@ -374,5 +374,5 @@ import {

try {
yield consumeTypesPromise;
const { zipTypesPath, apiTypesPath, zipName, apiFileName } = retrieveTypesAssetsInfo(finalOptions.remote);
if (isProd && zipName && compilation.getAsset(zipName)) {
callback();
return;

@@ -409,12 +409,8 @@ }

compiler.outputFileSystem.mkdir(path5.dirname(zipOutputPath), (err) => {
if (err) {
if (!isEEXIST(err)) {
reject(err);
}
if (err && !isEEXIST(err)) {
reject(err);
} else {
compiler.outputFileSystem.writeFile(zipOutputPath, zipContent, (writeErr) => {
if (writeErr) {
if (!isEEXIST(writeErr)) {
reject(writeErr);
}
if (writeErr && !isEEXIST(writeErr)) {
reject(writeErr);
} else {

@@ -433,12 +429,8 @@ resolve2();

compiler.outputFileSystem.mkdir(path5.dirname(apiOutputPath), (err) => {
if (err) {
if (!isEEXIST(err)) {
reject(err);
}
if (err && !isEEXIST(err)) {
reject(err);
} else {
compiler.outputFileSystem.writeFile(apiOutputPath, apiContent, (writeErr) => {
if (writeErr) {
if (!isEEXIST(writeErr)) {
reject(writeErr);
}
if (writeErr && !isEEXIST(writeErr)) {
reject(writeErr);
} else {

@@ -469,2 +461,3 @@ resolve2();

}, () => __async(this, null, function* () {
yield consumeTypesPromise;
const emitTypesFilesPromise = emitTypesFiles(compilation);

@@ -471,0 +464,0 @@ if (isProd) {

{
"name": "@module-federation/dts-plugin",
"version": "0.0.0-next-20250121103600",
"version": "0.0.0-next-20250121111439",
"author": "hanric <hanric.zhang@gmail.com>",

@@ -63,6 +63,6 @@ "main": "./dist/index.js",

"ws": "8.18.0",
"@module-federation/sdk": "0.0.0-next-20250121103600",
"@module-federation/managers": "0.0.0-next-20250121103600",
"@module-federation/third-party-dts-extractor": "0.0.0-next-20250121103600",
"@module-federation/error-codes": "0.0.0-next-20250121103600"
"@module-federation/sdk": "0.0.0-next-20250121111439",
"@module-federation/managers": "0.0.0-next-20250121111439",
"@module-federation/third-party-dts-extractor": "0.0.0-next-20250121111439",
"@module-federation/error-codes": "0.0.0-next-20250121111439"
},

@@ -76,3 +76,3 @@ "devDependencies": {

"vue-tsc": "^2.0.26",
"@module-federation/runtime": "0.0.0-next-20250121103600"
"@module-federation/runtime": "0.0.0-next-20250121111439"
},

@@ -79,0 +79,0 @@ "peerDependencies": {

Sorry, the diff of this file is too big to display

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