From f607da9855f81025ef4c4f01d527ad3a2f80575c Mon Sep 17 00:00:00 2001 From: Soner Sayakci Date: Sun, 3 Mar 2024 13:32:33 +0100 Subject: [PATCH] feat: migrate to @shopware-ag/storefront-types types --- src/Resources/app/storefront/package-lock.json | 18 +++++++++--------- src/Resources/app/storefront/package.json | 2 +- src/Resources/app/storefront/tsconfig.json | 2 +- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/src/Resources/app/storefront/package-lock.json b/src/Resources/app/storefront/package-lock.json index ec7108a..57eed5d 100644 --- a/src/Resources/app/storefront/package-lock.json +++ b/src/Resources/app/storefront/package-lock.json @@ -9,15 +9,7 @@ "version": "1.0.0", "license": "MIT", "dependencies": { - "@friendsofshopware/storefront-types": "^0.1.1" - } - }, - "node_modules/@friendsofshopware/storefront-types": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/@friendsofshopware/storefront-types/-/storefront-types-0.1.7.tgz", - "integrity": "sha512-Z2r5jUFvBle4eSKiuaQVxr0IfD4mg8V6/ULW4y15AyCzKCYP2YED3bKqvi4Za7sGRZN7SBNyH28YfOtIoa5X4g==", - "dependencies": { - "@types/bootstrap": "^5.2.0" + "@shopware-ag/storefront-types": "^0.1.2" } }, "node_modules/@popperjs/core": { @@ -29,6 +21,14 @@ "url": "https://opencollective.com/popperjs" } }, + "node_modules/@shopware-ag/storefront-types": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/@shopware-ag/storefront-types/-/storefront-types-0.1.2.tgz", + "integrity": "sha512-03wyyIYFq73jF5kgl7ohq6ysmMiYjAZ6jAHxwyOQShwa9iEpHU7VgE1vlxPnx/yjIoPy0oivSXP0O0b3HnHcug==", + "dependencies": { + "@types/bootstrap": "^5.2.0" + } + }, "node_modules/@types/bootstrap": { "version": "5.2.10", "resolved": "https://registry.npmjs.org/@types/bootstrap/-/bootstrap-5.2.10.tgz", diff --git a/src/Resources/app/storefront/package.json b/src/Resources/app/storefront/package.json index c2bab6d..0b653b7 100644 --- a/src/Resources/app/storefront/package.json +++ b/src/Resources/app/storefront/package.json @@ -9,6 +9,6 @@ "author": "", "license": "MIT", "dependencies": { - "@friendsofshopware/storefront-types": "^0.1.1" + "@shopware-ag/storefront-types": "^0.1.2" } } diff --git a/src/Resources/app/storefront/tsconfig.json b/src/Resources/app/storefront/tsconfig.json index 16cfe06..8176e38 100644 --- a/src/Resources/app/storefront/tsconfig.json +++ b/src/Resources/app/storefront/tsconfig.json @@ -1,6 +1,6 @@ { "compilerOptions": { - "types": ["@friendsofshopware/storefront-types"], + "types": ["@shopware-ag/storefront-types"], "target": "ES2020", "module": "CommonJS" }