From 8c8481a1a825d587ed0ca9957ea81ad94b14e772 Mon Sep 17 00:00:00 2001 From: sofisl <55454395+sofisl@users.noreply.github.com> Date: Thu, 12 Dec 2024 11:50:22 -0800 Subject: [PATCH] fix: update proto import path (#5878) fixes #5876 --- packages/google-cloud-tasks/package.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/google-cloud-tasks/package.json b/packages/google-cloud-tasks/package.json index 0cd3a09a46d..e34da4b6c89 100644 --- a/packages/google-cloud-tasks/package.json +++ b/packages/google-cloud-tasks/package.json @@ -23,14 +23,14 @@ "default": "./build/cjs/src/index.cjs" } }, - "./build/protos/protos": { + "./build/protos": { "import": { - "types": "./build/protos/protos/protos.d.ts", - "default": "./build/protos/protos/protos.js" + "types": "./build/protos/protos.d.ts", + "default": "./build/protos/protos.js" }, "require": { - "types": "./build/protos/protos/protos.d.ts", - "default": "./build/protos/protos/protos.cjs" + "types": "./build/protos/protos.d.ts", + "default": "./build/protos/protos.cjs" } } },