From e64074e9183ea47d1a3f21f60be2b4a4efd205a0 Mon Sep 17 00:00:00 2001 From: Aniket-Engg Date: Wed, 11 May 2022 19:18:37 +0530 Subject: [PATCH] build fix --- apps/remix-ide/webpack.config.js | 1 - libs/remix-ws-templates/package.json | 8 ++++++++ tsconfig.base.json | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/apps/remix-ide/webpack.config.js b/apps/remix-ide/webpack.config.js index c6d1f19000..529fe58d39 100644 --- a/apps/remix-ide/webpack.config.js +++ b/apps/remix-ide/webpack.config.js @@ -3,7 +3,6 @@ const TerserPlugin = require('terser-webpack-plugin') const CopyWebpackPlugin = require('copy-webpack-plugin') const version = require('../../package.json').version const fs = require('fs') -const path = require('path') const versionData = { version: version, diff --git a/libs/remix-ws-templates/package.json b/libs/remix-ws-templates/package.json index 2e99679b63..c0ebf1b058 100644 --- a/libs/remix-ws-templates/package.json +++ b/libs/remix-ws-templates/package.json @@ -3,9 +3,17 @@ "version": "1.0.0", "description": "", "main": "src/index.js", + "types": "src/index.d.ts", "scripts": { "test": "echo \"Error: no test specified\" && exit 1" }, + "publishConfig": { + "access": "public" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/ethereum/remix-project.git" + }, "author": "Aniket-Engg", "license": "ISC" } \ No newline at end of file diff --git a/tsconfig.base.json b/tsconfig.base.json index 6751f6778e..daadc1ca43 100644 --- a/tsconfig.base.json +++ b/tsconfig.base.json @@ -86,7 +86,7 @@ "libs/remix-ui/permission-handler/src/index.ts" ], "@remix-project/remix-ws-templates": [ - "dist/libs/remix-ws-templates/src/index.ts" + "dist/libs/remix-ws-templates/src/index.js" ] } },