Shopify app deploy command fails due @gadget-client could not be resolved
Hi, I have a Github Actions workflow for an app with Shopify Admin extension, where I 1. (checkout the repository-setup node - yarn install dependencies) 2. deploy app do production using gadget-inc/ggt-deploy-action@v1 3. install shopify cli using npm 4.Try to create a shopify app deployment using shopify app deploy --force --version ...
but this step (4.) always fails with this error: Could not resolve "@gadget-client/make-it-easy-superfaktura".
This import is in the extension's api.js file like:
import { Client } from "@gadget-client/make-it-easy-superfaktura";export const api = new Client({ environment: process.env["NODE_ENV"] });
import { Client } from "@gadget-client/make-it-easy-superfaktura";export const api = new Client({ environment: process.env["NODE_ENV"] });