From 1b8ef05689471950ff9856112b867ca100462083 Mon Sep 17 00:00:00 2001 From: Vivian Plasencia Date: Sat, 8 Jun 2024 00:26:04 +0200 Subject: [PATCH 1/2] refactor: exclude the website when running yarn dev re #525 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index b4d98298..9717b9a5 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "private": true, "scripts": { "start": "yarn workspaces foreach --exclude bandada-docs -A -pi run start", - "dev": "yarn workspaces foreach --exclude contracts -A -pi run dev", + "dev": "yarn workspaces foreach --exclude contracts --exclude bandada-website -A -pi run dev", "test": "jest && yarn workspace contracts test", "test:coverage": "yarn test:jest:coverage && yarn test:contracts:coverage", "test:jest:coverage": "jest --coverage", From aa4b362398277750316d115b5d12a6fc4f3201a0 Mon Sep 17 00:00:00 2001 From: Vivian Plasencia Date: Sat, 8 Jun 2024 00:30:39 +0200 Subject: [PATCH 2/2] chore: export types in credentials, hardhat and utils packages re #517 --- libs/credentials/package.json | 3 ++- libs/hardhat/package.json | 3 ++- libs/utils/package.json | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/libs/credentials/package.json b/libs/credentials/package.json index c3d927dd..4cc16fe2 100644 --- a/libs/credentials/package.json +++ b/libs/credentials/package.json @@ -6,7 +6,8 @@ "main": "dist/index.node.js", "exports": { "import": "./dist/index.mjs", - "require": "./dist/index.node.js" + "require": "./dist/index.node.js", + "types": "./dist/types/index.d.ts" }, "types": "dist/types/index.d.ts", "files": [ diff --git a/libs/hardhat/package.json b/libs/hardhat/package.json index c9f15840..2adbad9d 100644 --- a/libs/hardhat/package.json +++ b/libs/hardhat/package.json @@ -6,7 +6,8 @@ "main": "dist/index.node.js", "exports": { "import": "./dist/index.mjs", - "require": "./dist/index.node.js" + "require": "./dist/index.node.js", + "types": "./dist/types/index.d.ts" }, "types": "dist/types/index.d.ts", "files": [ diff --git a/libs/utils/package.json b/libs/utils/package.json index d4d36dff..44fa48d8 100644 --- a/libs/utils/package.json +++ b/libs/utils/package.json @@ -6,7 +6,8 @@ "main": "dist/index.node.js", "exports": { "import": "./dist/index.mjs", - "require": "./dist/index.node.js" + "require": "./dist/index.node.js", + "types": "./dist/types/index.d.ts" }, "types": "dist/types/index.d.ts", "files": [