From 1da5be3be18cc43b53188ef0c7d2f2b17e65b4b0 Mon Sep 17 00:00:00 2001 From: Lukasz Ostrowski Date: Thu, 23 Feb 2023 08:22:37 +0100 Subject: [PATCH] Prepare app for production (#145) Prepare data importer for production --------- Co-authored-by: Lukasz Ostrowski Fix prod resolving Add icon Improve styles --- .changeset/eleven-cycles-warn.md | 5 + .changeset/stale-rockets-change.md | 5 + .changeset/thirty-poets-collect.md | 9 + apps/data-importer/.env.example | 3 +- apps/data-importer/public/logo.svg | 6 + apps/data-importer/saleor-app.ts | 3 - .../authorization/use-authorized-token.ts | 3 +- .../customers-importer-view.tsx | 208 +++++++++++++++--- .../customers-importing-results.tsx | 4 +- apps/data-importer/src/pages/_app.tsx | 45 +++- apps/data-importer/src/pages/api/register.ts | 21 +- apps/data-importer/src/pages/importer.tsx | 10 +- apps/data-importer/src/public/favicon.ico | Bin 25931 -> 0 bytes apps/data-importer/src/public/vercel.svg | 4 - apps/data-importer/src/styles/globals.css | 1 - apps/monitoring/README.md | 22 +- apps/monitoring/src/setup-tests.ts | 2 +- apps/slack/src/pages/_app.tsx | 8 +- package.json | 3 +- packages/shared/src/app-icon/app-icon.tsx | 11 +- packages/shared/src/title-bar/title-bar.tsx | 14 +- pnpm-lock.yaml | 124 +++++++++++ turbo.json | 2 +- 23 files changed, 436 insertions(+), 77 deletions(-) create mode 100644 .changeset/eleven-cycles-warn.md create mode 100644 .changeset/stale-rockets-change.md create mode 100644 .changeset/thirty-poets-collect.md create mode 100644 apps/data-importer/public/logo.svg delete mode 100644 apps/data-importer/src/public/favicon.ico delete mode 100644 apps/data-importer/src/public/vercel.svg diff --git a/.changeset/eleven-cycles-warn.md b/.changeset/eleven-cycles-warn.md new file mode 100644 index 0000000..a0e2f27 --- /dev/null +++ b/.changeset/eleven-cycles-warn.md @@ -0,0 +1,5 @@ +--- +"saleor-app-data-importer": minor +--- + +Add dark mode styling diff --git a/.changeset/stale-rockets-change.md b/.changeset/stale-rockets-change.md new file mode 100644 index 0000000..96ab828 --- /dev/null +++ b/.changeset/stale-rockets-change.md @@ -0,0 +1,5 @@ +--- +"saleor-app-data-importer": patch +--- + +Add valid icon and color diff --git a/.changeset/thirty-poets-collect.md b/.changeset/thirty-poets-collect.md new file mode 100644 index 0000000..8fa1c4c --- /dev/null +++ b/.changeset/thirty-poets-collect.md @@ -0,0 +1,9 @@ +--- +"saleor-app-data-importer": minor +--- + +Enable origins check for installation via env variables + +Update app-sdk + +Set Nuvo development mode based on env variables diff --git a/apps/data-importer/.env.example b/apps/data-importer/.env.example index 2bb5467..f62e6b0 100644 --- a/apps/data-importer/.env.example +++ b/apps/data-importer/.env.example @@ -1,2 +1,3 @@ # https://getnuvo.com/ -NEXT_PUBLIC_NUVO_LICENSE_KEY= \ No newline at end of file +NEXT_PUBLIC_NUVO_LICENSE_KEY= +NEXT_PUBLIC_NUVO_PROD_MODE=false \ No newline at end of file diff --git a/apps/data-importer/public/logo.svg b/apps/data-importer/public/logo.svg new file mode 100644 index 0000000..9971107 --- /dev/null +++ b/apps/data-importer/public/logo.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/apps/data-importer/saleor-app.ts b/apps/data-importer/saleor-app.ts index e121e2c..af23382 100644 --- a/apps/data-importer/saleor-app.ts +++ b/apps/data-importer/saleor-app.ts @@ -11,9 +11,6 @@ import { APL, FileAPL, SaleorCloudAPL, UpstashAPL, VercelAPL } from "@saleor/app export let apl: APL; switch (process.env.APL) { - case "vercel": - apl = new VercelAPL(); - break; case "upstash": // Require `UPSTASH_URL` and `UPSTASH_TOKEN` environment variables apl = new UpstashAPL(); diff --git a/apps/data-importer/src/modules/authorization/use-authorized-token.ts b/apps/data-importer/src/modules/authorization/use-authorized-token.ts index 845bc01..1903dd4 100644 --- a/apps/data-importer/src/modules/authorization/use-authorized-token.ts +++ b/apps/data-importer/src/modules/authorization/use-authorized-token.ts @@ -3,8 +3,7 @@ import { useEffect, useState } from "react"; import * as jose from "jose"; /** - * TODO test - * TODO extract to app-sdk + * use app-sdk */ export function useAuthorizedToken(requirePermission: string) { const [authorized, setAuthorized] = useState(); diff --git a/apps/data-importer/src/modules/customers/customers-importer-nuvo/customers-importer-view.tsx b/apps/data-importer/src/modules/customers/customers-importer-nuvo/customers-importer-view.tsx index 2d1c671..59f3c24 100644 --- a/apps/data-importer/src/modules/customers/customers-importer-nuvo/customers-importer-view.tsx +++ b/apps/data-importer/src/modules/customers/customers-importer-nuvo/customers-importer-view.tsx @@ -1,4 +1,4 @@ -import React, { useCallback, useState } from "react"; +import React, { useCallback, useMemo, useState } from "react"; import dynamic from "next/dynamic"; import { ConfigureAPI, OnResults, SettingsAPI } from "nuvo-react"; import { @@ -8,10 +8,11 @@ import { } from "./customers-columns-model"; import dotObject from "dot-object"; import { useAuthorizedToken } from "../../authorization/use-authorized-token"; -import { Alert, Button } from "@saleor/macaw-ui"; +import { Alert, Button, SaleorTheme, useTheme } from "@saleor/macaw-ui"; import { CustomersImportingResults } from "../customers-results/customers-importing-results"; -import { LinearProgress } from "@material-ui/core"; +import { lighten, LinearProgress } from "@material-ui/core"; import { CloudUpload } from "@material-ui/icons"; +import { Theme } from "@material-ui/core/styles"; let PassSubmitResult: any; let RejectSubmitResult: any; @@ -34,57 +35,190 @@ const NuvoImporter = dynamic( const columns = getCustomersModelColumns(); -const nuvoSettings: SettingsAPI = { - columns, - developerMode: true, //todo - identifier: "customers", - modal: false, - style: { - buttons: { - primary: { - background: "black", - color: "#fff", +const getNuvoSettings = (theme: SaleorTheme): SettingsAPI => { + const dropdownStyles = { + option: { + color: theme.palette.text.primary, + ":hover": { + background: `${lighten(theme.palette.background.default, 0.1)}`, }, }, - loader: { - loadAnimationColor: "#000", - }, header: { - description: { - display: "none", - }, + background: theme.palette.background.default, + color: theme.palette.text.primary, + }, + root: { + border: `1px solid ${lighten(theme.palette.background.default, 0.1)}`, + background: theme.palette.background.default, + color: theme.palette.text.primary, + }, + search: { root: { - // display: "none", + background: theme.palette.background.default, + color: theme.palette.text.primary, }, }, - progressBar: { + button: { root: { - display: "none", + background: theme.palette.background.default, + color: theme.palette.text.primary, + maxHeight: "20px", + border: `1px solid ${lighten(theme.palette.background.default, 0.1)}`, }, }, - dropzone: { - icon: { - box: { - filter: "grayscale(1)", + } as const; + + return { + columns, + enableExamples: false, + developerMode: process.env.NEXT_PUBLIC_NUVO_PROD_MODE !== "true", + identifier: "customers", + modal: false, + style: { + footer: { + root: { + background: theme.palette.background.default, }, }, - root: { - background: "#fff", - border: "1px dashed #ddd", + buttons: { + primary: { + background: "black", + color: "#fff", + ":hover": { + backgroundColor: "black", + color: "#fff", + }, + }, + secondary: { + background: "#444", + color: "#fff", + border: "none", + ":hover": { + background: "#444", + color: "#fff", + }, + }, + }, + loader: { + loadAnimationColor: theme.palette.type === "light" ? "#000" : "#fff", + }, + headerSelect: { + root: { + background: theme.palette.background.default, + border: "none", + }, + table: { + selectRowColor: lighten(theme.palette.background.default, 0.3), + th: { + color: theme.palette.text.primary, + background: theme.palette.background.default, + }, + td: { + color: theme.palette.text.primary, + background: theme.palette.background.default, + }, + hoverRowColor: lighten(theme.palette.background.default, 0.1), + }, + sheetName: { + root: { + display: "none", + }, + }, + }, + columnMatch: { + notMatchingValue: { + root: { + background: lighten(theme.palette.background.default, 0.1), + }, + }, + buttonJoined: { + root: { + background: lighten(theme.palette.background.default, 0.1), + }, + }, + root: { + background: theme.palette.background.default, + border: `1px solid ${lighten(theme.palette.background.default, 0.1)}`, + }, + columnMatchHeader: { + dropdown: dropdownStyles, + root: { + background: theme.palette.background.default, + border: `1px solid ${lighten(theme.palette.background.default, 0.1)}`, + }, + }, + columnMatchValue: { + emptyValue: { + background: theme.palette.background.default, + color: theme.palette.text.primary, + }, + dropdown: dropdownStyles, + root: { + border: `1px solid ${lighten(theme.palette.background.default, 0.1)}`, + background: theme.palette.background.default, + }, + }, + }, + header: { + description: { + display: "none", + }, + root: { + // display: "none", + }, + }, + progressBar: { + root: { + display: "none", + }, + }, + dropzone: { + icon: { + box: { + filter: "grayscale(1)", + }, + }, + root: { + background: theme.palette.background.default, + border: "1px dashed #ddd", + }, + }, + reviewEntries: { + root: { + backgroundColor: "transparent", + }, + table: { + th: { + backgroundColor: "transparent", + }, + td: { + normal: { + backgroundColor: "transparent", + }, + root: { + backgroundColor: "transparent", + }, + }, + }, + }, + globals: { + fontFamily: "Inter", + backgroundColor: "transparent", + textColor: "inherit", }, }, - globals: { fontFamily: "Inter", backgroundColor: "transparent" }, - }, - title: "Upload customers to Saleor", - disableExcelTemplate: true, - disableTemplates: true, - allowManualInput: true, + title: "Upload customers to Saleor", + disableExcelTemplate: true, + disableTemplates: true, + allowManualInput: true, + }; }; const licenseKey = process.env.NEXT_PUBLIC_NUVO_LICENSE_KEY as string; export const CustomersImporterView = () => { const authorized = useAuthorizedToken("MANAGE_USERS"); + const saleorTheme = useTheme(); const [importedLines, setImportedLines] = useState(null); @@ -96,6 +230,10 @@ export const CustomersImporterView = () => { setImportedLines(parsedResult); }, []); + const nuvoSettings = useMemo(() => { + return getNuvoSettings(saleorTheme); + }, [saleorTheme]); + if (authorized === undefined) { return
Authorizing
; } diff --git a/apps/data-importer/src/modules/customers/customers-results/customers-importing-results.tsx b/apps/data-importer/src/modules/customers/customers-results/customers-importing-results.tsx index cae3fd7..cf90e2d 100644 --- a/apps/data-importer/src/modules/customers/customers-results/customers-importing-results.tsx +++ b/apps/data-importer/src/modules/customers/customers-results/customers-importing-results.tsx @@ -12,9 +12,9 @@ export const CustomersImportingResults = ({ const [importingStarted, setImportingStarted] = useState(false); return ( -
+
- Customers rows from imported file + Customers rows from the imported file diff --git a/apps/data-importer/src/pages/_app.tsx b/apps/data-importer/src/pages/_app.tsx index 7fb562b..454ceb4 100644 --- a/apps/data-importer/src/pages/_app.tsx +++ b/apps/data-importer/src/pages/_app.tsx @@ -1,12 +1,42 @@ import "@saleor/apps-shared/src/globals.css"; +import "../styles/globals.css"; import { AppBridge, AppBridgeProvider } from "@saleor/app-sdk/app-bridge"; import { RoutePropagator } from "@saleor/app-sdk/app-bridge/next"; -import React, { useEffect } from "react"; +import { + dark, + light, + SaleorThemeColors, + ThemeProvider as MacawUIThemeProvider, +} from "@saleor/macaw-ui"; +import React, { PropsWithChildren, useEffect } from "react"; import { AppProps } from "next/app"; import { ThemeSynchronizer } from "../lib/theme-synchronizer"; import { NoSSRWrapper } from "../no-ssr-wrapper"; -import { MacawThemeProvider } from "@saleor/apps-shared"; +import { Theme } from "@material-ui/core/styles"; + +type PalettesOverride = Record<"light" | "dark", SaleorThemeColors>; + +/** + * Temporary override of colors, to match new dashboard palette. + * Long term this will be replaced with Macaw UI 2.x with up to date design tokens + */ +const palettes: PalettesOverride = { + light: { + ...light, + background: { + default: "#fff", + paper: "#fff", + }, + }, + dark: { + ...dark, + background: { + default: "hsla(211, 42%, 14%, 1)", + paper: "hsla(211, 42%, 14%, 1)", + }, + }, +}; /** * Ensure instance is a singleton. @@ -14,6 +44,13 @@ import { MacawThemeProvider } from "@saleor/apps-shared"; */ const appBridgeInstance = typeof window !== "undefined" ? new AppBridge() : undefined; +/** + * That's a hack required by Macaw-UI incompatibility with React@18 + */ +const ThemeProvider = MacawUIThemeProvider as React.FC< + PropsWithChildren<{ overrides?: Partial; ssr: boolean; palettes: PalettesOverride }> +>; + function NextApp({ Component, pageProps }: AppProps) { /** * Configure JSS (used by MacawUI) for SSR. If Macaw is not used, can be removed. @@ -28,11 +65,11 @@ function NextApp({ Component, pageProps }: AppProps) { return ( - + - + ); diff --git a/apps/data-importer/src/pages/api/register.ts b/apps/data-importer/src/pages/api/register.ts index 09aaec2..4596d14 100644 --- a/apps/data-importer/src/pages/api/register.ts +++ b/apps/data-importer/src/pages/api/register.ts @@ -2,8 +2,27 @@ import { createAppRegisterHandler } from "@saleor/app-sdk/handlers/next"; import { saleorApp } from "../../../saleor-app"; +const allowedUrlsPattern = process.env.ALLOWED_DOMAIN_PATTERN; + /** * Required endpoint, called by Saleor to install app. * It will exchange tokens with app, so saleorApp.apl will contain token */ -export default createAppRegisterHandler(saleorApp); +export default createAppRegisterHandler({ + apl: saleorApp.apl, + /** + * Prohibit installation from Saleors other than specified by the regex. + * Regex source is ENV so if ENV is not set, all installations will be allowed. + */ + allowedSaleorUrls: [ + (url) => { + if (allowedUrlsPattern) { + const regex = new RegExp(allowedUrlsPattern); + + return regex.test(url); + } + + return true; + }, + ], +}); diff --git a/apps/data-importer/src/pages/importer.tsx b/apps/data-importer/src/pages/importer.tsx index b4408c4..db43307 100644 --- a/apps/data-importer/src/pages/importer.tsx +++ b/apps/data-importer/src/pages/importer.tsx @@ -1,6 +1,6 @@ import { NextPage } from "next"; import React, { ComponentProps } from "react"; -import { Container, Divider, Typography } from "@material-ui/core"; +import { Container, Divider } from "@material-ui/core"; import { Button, makeStyles, PageTab, PageTabs, SaleorTheme } from "@saleor/macaw-ui"; import { CustomersImporterView } from "../modules/customers/customers-importer-nuvo/customers-importer-view"; import GraphQLProvider from "../providers/GraphQLProvider"; @@ -11,7 +11,7 @@ type Tab = "customers"; const useStyles = makeStyles((theme: SaleorTheme) => ({ wrapper: { - minHeight: '100vh', + minHeight: `100vh`, }, })); @@ -34,7 +34,7 @@ const ImporterPage: NextPage = () => {
} + icon={} />} name="Data Importer" author="By Saleor Commerce" rightColumnContent={ @@ -58,7 +58,7 @@ const ImporterPage: NextPage = () => {
} /> - + { - + {activeTab === "customers" && }
diff --git a/apps/data-importer/src/public/favicon.ico b/apps/data-importer/src/public/favicon.ico deleted file mode 100644 index 718d6fea4835ec2d246af9800eddb7ffb276240c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 25931 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 LrJugUA?W`A8`#=m diff --git a/apps/data-importer/src/public/vercel.svg b/apps/data-importer/src/public/vercel.svg deleted file mode 100644 index fbf0e25..0000000 --- a/apps/data-importer/src/public/vercel.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - \ No newline at end of file diff --git a/apps/data-importer/src/styles/globals.css b/apps/data-importer/src/styles/globals.css index c1fe16f..9bdd0d0 100644 --- a/apps/data-importer/src/styles/globals.css +++ b/apps/data-importer/src/styles/globals.css @@ -2,7 +2,6 @@ body { font-family: Inter, -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; color: #111; - padding: 1rem 2rem; } code { diff --git a/apps/monitoring/README.md b/apps/monitoring/README.md index 8a082ab..4447e72 100644 --- a/apps/monitoring/README.md +++ b/apps/monitoring/README.md @@ -5,36 +5,45 @@ ## Local development ### Start Monitoring backend + Run: - ```shell + +```shell docker-compose up - ``` +``` + It is beneficial to run this command in a separate terminal tab to observe backend logs easily. By default, backend will run at `localhost:5001` with: - - Manifest at `/manifest` - - Graphql Playground at `/graphql` - - OpenApi viewer at `/docs` + +- Manifest at `/manifest` +- Graphql Playground at `/graphql` +- OpenApi viewer at `/docs` ### Develop frontend: Installing dependencies with: + ```shell pnpm i ``` Running dev server + ```shell pnpm dev ``` + The frontend app will run at `localhost:3000`. By default, it acts as a proxy and redirects all unhandled requests to the backend (configured by `MONITORING_APP_API_URL` env). This way, all frontend and backend endpoints are accessible at `http://localhost:3000` ### Test with Saleor + Expose `http://localhost:3000` using a tunnel and use `https://your.tunnel/manifest` manifest URL to install `Monitoring` app ### Graphql Playground + To use Graphql Playground, `Monitoring` app needs to be installed in Saleor, and HTTP headers must be set: ```json @@ -45,9 +54,11 @@ To use Graphql Playground, `Monitoring` app needs to be installed in Saleor, and ``` ### Testing DataDog integration + Use these credentials sets to test DataDog integration: Working credentials: + ```json { "site": "US1", @@ -56,6 +67,7 @@ Working credentials: ``` Credentials that validate but generate an error while sending events + ```json { "site": "EU1", diff --git a/apps/monitoring/src/setup-tests.ts b/apps/monitoring/src/setup-tests.ts index 5046278..5f1e198 100644 --- a/apps/monitoring/src/setup-tests.ts +++ b/apps/monitoring/src/setup-tests.ts @@ -3,4 +3,4 @@ * * https://vitest.dev/config/#setupfiles */ -export {} +export {}; diff --git a/apps/slack/src/pages/_app.tsx b/apps/slack/src/pages/_app.tsx index 3a65e8e..ffbfca4 100644 --- a/apps/slack/src/pages/_app.tsx +++ b/apps/slack/src/pages/_app.tsx @@ -3,7 +3,12 @@ import "../styles/globals.css"; import { Theme } from "@material-ui/core/styles"; import { AppBridge, AppBridgeProvider } from "@saleor/app-sdk/app-bridge"; import { RoutePropagator } from "@saleor/app-sdk/app-bridge/next"; -import { dark, light, SaleorThemeColors, ThemeProvider as MacawUIThemeProvider } from "@saleor/macaw-ui"; +import { + dark, + light, + SaleorThemeColors, + ThemeProvider as MacawUIThemeProvider, +} from "@saleor/macaw-ui"; import React, { PropsWithChildren, useEffect } from "react"; import { AppLayoutProps } from "../../types"; @@ -63,7 +68,6 @@ const ThemeProvider = MacawUIThemeProvider as React.FC< PropsWithChildren<{ overrides?: Partial; ssr: boolean; palettes: PalettesOverride }> >; - function SaleorApp({ Component, pageProps }: AppLayoutProps) { const getLayout = Component.getLayout ?? ((page) => page); diff --git a/package.json b/package.json index dafb877..8824f0f 100644 --- a/package.json +++ b/package.json @@ -23,7 +23,8 @@ "prettier": "^2.8.3", "turbo": "^1.7.4", "eslint": "^8.33.0", - "husky": "^8.0.3" + "husky": "^8.0.3", + "lint-staged": "^13.1.2" }, "engines": { "node": ">=18.0.0" diff --git a/packages/shared/src/app-icon/app-icon.tsx b/packages/shared/src/app-icon/app-icon.tsx index 5086634..b136456 100644 --- a/packages/shared/src/app-icon/app-icon.tsx +++ b/packages/shared/src/app-icon/app-icon.tsx @@ -5,7 +5,6 @@ import clsx from "clsx"; const useStyles = makeStyles({ appIconContainer: { - background: "rgb(58, 86, 199)", display: "flex", flexDirection: "column", justifyContent: "center", @@ -23,11 +22,17 @@ type Props = HTMLProps & { icon?: ReactNode; }; -export function AppIcon({ className, children, text, icon, ...props }: Props) { +export function AppIcon({ className, children, text, icon, theme, ...props }: Props) { const styles = useStyles(); return ( -
+
{text && {text}} {icon && icon}
diff --git a/packages/shared/src/title-bar/title-bar.tsx b/packages/shared/src/title-bar/title-bar.tsx index 180936b..6be47e4 100644 --- a/packages/shared/src/title-bar/title-bar.tsx +++ b/packages/shared/src/title-bar/title-bar.tsx @@ -22,12 +22,14 @@ export function TitleBar({ bottomMargin, }: Props) { return ( -
- +
+ {icon &&
{icon}
}

{name}

diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 55253ac..1d8eea4 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -8,6 +8,7 @@ importers: eslint: ^8.33.0 eslint-config-saleor: workspace:* husky: ^8.0.3 + lint-staged: ^13.1.2 prettier: ^2.8.3 turbo: ^1.7.4 devDependencies: @@ -15,6 +16,7 @@ importers: eslint: 8.33.0 eslint-config-saleor: link:packages/eslint-config-saleor husky: 8.0.3 + lint-staged: 13.1.2 prettier: 2.8.3 turbo: 1.7.4 @@ -6245,6 +6247,11 @@ packages: engines: {node: '>= 6'} dev: false + /commander/9.5.0: + resolution: {integrity: sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==} + engines: {node: ^12.20.0 || >=14} + dev: true + /common-tags/1.8.2: resolution: {integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==} engines: {node: '>=4.0.0'} @@ -7816,6 +7823,21 @@ packages: strip-final-newline: 2.0.0 dev: true + /execa/6.1.0: + resolution: {integrity: sha512-QVWlX2e50heYJcCPG0iWtf8r0xjEYfz/OYLGDYH+IyjWezzPNxz63qNFOu0l4YftGWuizFVZHHs8PrLU5p2IDA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dependencies: + cross-spawn: 7.0.3 + get-stream: 6.0.1 + human-signals: 3.0.1 + is-stream: 3.0.0 + merge-stream: 2.0.0 + npm-run-path: 5.1.0 + onetime: 6.0.0 + signal-exit: 3.0.7 + strip-final-newline: 3.0.0 + dev: true + /exenv/1.2.2: resolution: {integrity: sha512-Z+ktTxTwv9ILfgKCk32OX3n/doe+OcLTRtqK9pcL+JsP3J1/VW8Uvl4ZjLlKqeW4rzK4oesDOGMEMRIZqtP4Iw==} @@ -8221,6 +8243,11 @@ packages: pump: 3.0.0 dev: true + /get-stream/6.0.1: + resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} + engines: {node: '>=10'} + dev: true + /get-symbol-description/1.0.0: resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==} engines: {node: '>= 0.4'} @@ -8635,6 +8662,11 @@ packages: engines: {node: '>=8.12.0'} dev: true + /human-signals/3.0.1: + resolution: {integrity: sha512-rQLskxnM/5OCldHo+wNXbpVgDn5A17CUoKX+7Sokwaknlq7CdSnphy0W39GU8dw59XiCXmFXDg4fRuckQRKewQ==} + engines: {node: '>=12.20.0'} + dev: true + /husky/8.0.3: resolution: {integrity: sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==} engines: {node: '>=14'} @@ -8994,6 +9026,11 @@ packages: engines: {node: '>=8'} dev: true + /is-stream/3.0.0: + resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dev: true + /is-string/1.0.7: resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} engines: {node: '>= 0.4'} @@ -9426,6 +9463,29 @@ packages: /lines-and-columns/1.2.4: resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} + /lint-staged/13.1.2: + resolution: {integrity: sha512-K9b4FPbWkpnupvK3WXZLbgu9pchUJ6N7TtVZjbaPsoizkqFUDkUReUL25xdrCljJs7uLUF3tZ7nVPeo/6lp+6w==} + engines: {node: ^14.13.1 || >=16.0.0} + hasBin: true + dependencies: + cli-truncate: 3.1.0 + colorette: 2.0.19 + commander: 9.5.0 + debug: 4.3.4 + execa: 6.1.0 + lilconfig: 2.0.6 + listr2: 5.0.7 + micromatch: 4.0.5 + normalize-path: 3.0.0 + object-inspect: 1.12.3 + pidtree: 0.6.0 + string-argv: 0.3.1 + yaml: 2.2.1 + transitivePeerDependencies: + - enquirer + - supports-color + dev: true + /listenercount/1.0.1: resolution: {integrity: sha512-3mk/Zag0+IJxeDrxSgaDPy4zZ3w05PRZeJNnlWhzFz5OkX49J4krc+A8X2d2M69vGMBEX0uyl8M+W+8gH+kBqQ==} dev: false @@ -9499,6 +9559,25 @@ packages: wrap-ansi: 7.0.0 dev: true + /listr2/5.0.7: + resolution: {integrity: sha512-MD+qXHPmtivrHIDRwPYdfNkrzqDiuaKU/rfBcec3WMyMF3xylQj3jMq344OtvQxz7zaCFViRAeqlr2AFhPvXHw==} + engines: {node: ^14.13.1 || >=16.0.0} + peerDependencies: + enquirer: '>= 2.3.0 < 3' + peerDependenciesMeta: + enquirer: + optional: true + dependencies: + cli-truncate: 2.1.0 + colorette: 2.0.19 + log-update: 4.0.0 + p-map: 4.0.0 + rfdc: 1.3.0 + rxjs: 7.8.0 + through: 2.3.8 + wrap-ansi: 7.0.0 + dev: true + /load-yaml-file/0.2.0: resolution: {integrity: sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==} engines: {node: '>=6'} @@ -9853,6 +9932,11 @@ packages: engines: {node: '>=6'} dev: true + /mimic-fn/4.0.0: + resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==} + engines: {node: '>=12'} + dev: true + /mimic-response/1.0.1: resolution: {integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==} engines: {node: '>=4'} @@ -10234,6 +10318,13 @@ packages: path-key: 3.1.1 dev: true + /npm-run-path/5.1.0: + resolution: {integrity: sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dependencies: + path-key: 4.0.0 + dev: true + /npmlog/4.1.2: resolution: {integrity: sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==} dependencies: @@ -10405,6 +10496,13 @@ packages: mimic-fn: 2.1.0 dev: true + /onetime/6.0.0: + resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==} + engines: {node: '>=12'} + dependencies: + mimic-fn: 4.0.0 + dev: true + /open/8.4.0: resolution: {integrity: sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==} engines: {node: '>=12'} @@ -10593,6 +10691,11 @@ packages: resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} engines: {node: '>=8'} + /path-key/4.0.0: + resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==} + engines: {node: '>=12'} + dev: true + /path-parse/1.0.7: resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} @@ -10638,6 +10741,12 @@ packages: resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} engines: {node: '>=8.6'} + /pidtree/0.6.0: + resolution: {integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==} + engines: {node: '>=0.10'} + hasBin: true + dev: true + /pify/4.0.1: resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} engines: {node: '>=6'} @@ -11894,6 +12003,11 @@ packages: resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==} engines: {node: '>=10.0.0'} + /string-argv/0.3.1: + resolution: {integrity: sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==} + engines: {node: '>=0.6.19'} + dev: true + /string-env-interpolation/1.0.1: resolution: {integrity: sha512-78lwMoCcn0nNu8LszbP1UA7g55OeE4v7rCeWnM5B453rnNr4aq+5it3FEYtZrSEiMvHZOZ9Jlqb0OD0M2VInqg==} dev: true @@ -12008,6 +12122,11 @@ packages: engines: {node: '>=6'} dev: true + /strip-final-newline/3.0.0: + resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==} + engines: {node: '>=12'} + dev: true + /strip-indent/3.0.0: resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} engines: {node: '>=8'} @@ -13179,6 +13298,11 @@ packages: resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} engines: {node: '>= 6'} + /yaml/2.2.1: + resolution: {integrity: sha512-e0WHiYql7+9wr4cWMx3TVQrNwejKaEe7/rHNmQmqRjazfOP5W8PB6Jpebb5o6fIapbz9o9+2ipcaTM2ZwDI6lw==} + engines: {node: '>= 14'} + dev: true + /yargs-parser/18.1.3: resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==} engines: {node: '>=6'} diff --git a/turbo.json b/turbo.json index a34745d..40e6a36 100644 --- a/turbo.json +++ b/turbo.json @@ -9,7 +9,7 @@ "outputs": ["dist/**", ".next/**"] }, "build#saleor-app-data-importer": { - "env": ["APL", "NEXT_PUBLIC_NUVO_LICENSE_KEY", "NEXT_PUBLIC_VERCEL_ENV"] + "env": ["APL", "NEXT_PUBLIC_NUVO_LICENSE_KEY", "NEXT_PUBLIC_VERCEL_ENV", "NEXT_PUBLIC_NUVO_PROD_MODE"] }, "build#saleor-app-invoices": { "env": [