From aac6245e8c8d4d264136983b962bb2b1a3fe9463 Mon Sep 17 00:00:00 2001 From: Iku-turso Date: Tue, 6 Jun 2023 11:03:21 +0300 Subject: [PATCH] chore: Fix bad paths for yalc in package.jsons Co-authored-by: Janne Savolainen Signed-off-by: Mikko Aspiala --- packages/infrastructure/eslint-config/package.json | 4 ++-- packages/node-fetch/package.json | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/infrastructure/eslint-config/package.json b/packages/infrastructure/eslint-config/package.json index 5bc67bb42b..21436606fc 100644 --- a/packages/infrastructure/eslint-config/package.json +++ b/packages/infrastructure/eslint-config/package.json @@ -15,8 +15,8 @@ "./prettier": "./prettier-config.json" }, "files": [ - "./eslint-config.js", - "./prettier-config.json" + "eslint-config.js", + "prettier-config.json" ], "repository": { "type": "git", diff --git a/packages/node-fetch/package.json b/packages/node-fetch/package.json index 009158810d..4107ff54f3 100644 --- a/packages/node-fetch/package.json +++ b/packages/node-fetch/package.json @@ -8,8 +8,8 @@ "access": "public", "registry": "https://registry.npmjs.org/" }, - "main": "./dist/index.cjs", - "types": "./dist/index.d.ts", + "main": "dist/index.cjs", + "types": "dist/index.d.ts", "type": "module", "files": [ "dist"