From 9ca9ed1ed04aa29d32bd45dffba9350d12668d0c Mon Sep 17 00:00:00 2001 From: Piyal Basu Date: Thu, 28 Jul 2022 16:31:37 -0400 Subject: [PATCH] add publicPath string to help with jsdom error (#120) * add publicPath string to help with jsdom error * update deps --- @stellar/design-system-website/package.json | 2 +- @stellar/design-system/package.json | 2 +- @stellar/design-system/webpack.config.js | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/@stellar/design-system-website/package.json b/@stellar/design-system-website/package.json index e3eb79f0..62c7ccc1 100755 --- a/@stellar/design-system-website/package.json +++ b/@stellar/design-system-website/package.json @@ -13,7 +13,7 @@ "lint-tsc": "tsc --noEmit" }, "dependencies": { - "@stellar/design-system": "^0.8.0", + "@stellar/design-system": "^0.8.1", "@svgr/webpack": "^6.2.1", "assert": "^2.0.0", "buffer": "^6.0.3", diff --git a/@stellar/design-system/package.json b/@stellar/design-system/package.json index 8c724768..b892c1a4 100755 --- a/@stellar/design-system/package.json +++ b/@stellar/design-system/package.json @@ -1,6 +1,6 @@ { "name": "@stellar/design-system", - "version": "0.8.0", + "version": "0.8.1", "author": "Stellar Development Foundation ", "description": "Components for Stellar Development Foundation’s design system", "license": "Apache-2.0", diff --git a/@stellar/design-system/webpack.config.js b/@stellar/design-system/webpack.config.js index 66d2dee4..0d25a3f0 100644 --- a/@stellar/design-system/webpack.config.js +++ b/@stellar/design-system/webpack.config.js @@ -9,6 +9,7 @@ module.exports = { }, output: { filename: "[name].js", + publicPath: "", path: path.resolve(__dirname, "build"), libraryTarget: "umd", },