From 8f2afbbb5d6ffdd7091c8e9c22addda835defe8e Mon Sep 17 00:00:00 2001 From: Ian Date: Wed, 28 Jun 2023 15:48:57 -0400 Subject: [PATCH] fix: explicitly depend on tslib to support Yarn PNP --- libs/native-federation-core/package.json | 1 + libs/native-federation-esbuild/package.json | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/libs/native-federation-core/package.json b/libs/native-federation-core/package.json index f383f352..c732c449 100644 --- a/libs/native-federation-core/package.json +++ b/libs/native-federation-core/package.json @@ -5,6 +5,7 @@ "dependencies": { "json5": "^2.2.0", "npmlog": "^6.0.2", + "tslib": "^2.0.0", "@softarc/native-federation-runtime": "1.1.1" } } diff --git a/libs/native-federation-esbuild/package.json b/libs/native-federation-esbuild/package.json index a101e23c..378ee1e4 100644 --- a/libs/native-federation-esbuild/package.json +++ b/libs/native-federation-esbuild/package.json @@ -10,6 +10,7 @@ "rollup-plugin-node-externals": "^4.1.1", "esbuild": "^0.15.5", "npmlog": "^6.0.2", - "acorn": "^8.8.1" + "acorn": "^8.8.1", + "tslib": "^2.0.0" } }