diff --git a/.eslintignore b/.eslintignore index fc3d11c1d7..4eb5ce3a98 100644 --- a/.eslintignore +++ b/.eslintignore @@ -3,3 +3,4 @@ scripts/preact.js scripts/htm.js scripts/dropins tools/picker +vendors/ diff --git a/head.html b/head.html index 69f4c84ed7..02c76d5b30 100644 --- a/head.html +++ b/head.html @@ -1,15 +1,19 @@ + + + + diff --git a/install_vendors.sh b/install_vendors.sh new file mode 100644 index 0000000000..27714b142b --- /dev/null +++ b/install_vendors.sh @@ -0,0 +1,18 @@ +#!/bin/bash + +# Array of files to copy +declare -a files_to_copy=("@dropins") + +# Remove existing dropins folder +rm -rf vendors/ + +# Create vendors directory if not exists +mkdir -p vendors/ + +# Copy specified files from node_modules/@dropins to vendors/dropins +for file in "${files_to_copy[@]}"; do + cp -R "node_modules/$file" "vendors/." +done + +# Remove package.json files inside dropins +find vendors -type f -name "package.json" -exec rm {} \; diff --git a/package.json b/package.json index 99417c5157..30941966f0 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,9 @@ "lint:css": "stylelint blocks/**/*.css styles/*.css", "lint": "npm run lint:js && npm run lint:css", "start": "aem up --print-index", - "postinstall": "rm -rf scripts/dropins && cp -R node_modules/@dropins scripts/dropins && find scripts/dropins -type f -name \"package.json\" -exec rm {} \\;" + "install:dropins": "bash ./install_vendors.sh", + "postinstall": "npm run install:dropins", + "postupdate": "npm run install:dropins" }, "repository": { "type": "git", diff --git a/scripts/dropins/elsie/event-bus.js b/vendors/@dropins/elsie/event-bus.js similarity index 100% rename from scripts/dropins/elsie/event-bus.js rename to vendors/@dropins/elsie/event-bus.js diff --git a/scripts/dropins/elsie/fetch-graphql.js b/vendors/@dropins/elsie/fetch-graphql.js similarity index 100% rename from scripts/dropins/elsie/fetch-graphql.js rename to vendors/@dropins/elsie/fetch-graphql.js diff --git a/scripts/dropins/elsie/fetch-graphql.js.LICENSE.txt b/vendors/@dropins/elsie/fetch-graphql.js.LICENSE.txt similarity index 100% rename from scripts/dropins/elsie/fetch-graphql.js.LICENSE.txt rename to vendors/@dropins/elsie/fetch-graphql.js.LICENSE.txt diff --git a/scripts/dropins/elsie/initializer.js b/vendors/@dropins/elsie/initializer.js similarity index 100% rename from scripts/dropins/elsie/initializer.js rename to vendors/@dropins/elsie/initializer.js diff --git a/scripts/dropins/elsie/preact-compat.js b/vendors/@dropins/elsie/preact-compat.js similarity index 100% rename from scripts/dropins/elsie/preact-compat.js rename to vendors/@dropins/elsie/preact-compat.js diff --git a/scripts/dropins/elsie/preact-hooks.js b/vendors/@dropins/elsie/preact-hooks.js similarity index 100% rename from scripts/dropins/elsie/preact-hooks.js rename to vendors/@dropins/elsie/preact-hooks.js diff --git a/scripts/dropins/elsie/preact-jsx-runtime.js b/vendors/@dropins/elsie/preact-jsx-runtime.js similarity index 100% rename from scripts/dropins/elsie/preact-jsx-runtime.js rename to vendors/@dropins/elsie/preact-jsx-runtime.js diff --git a/scripts/dropins/elsie/preact.js b/vendors/@dropins/elsie/preact.js similarity index 100% rename from scripts/dropins/elsie/preact.js rename to vendors/@dropins/elsie/preact.js diff --git a/scripts/dropins/elsie/runtime.js b/vendors/@dropins/elsie/runtime.js similarity index 100% rename from scripts/dropins/elsie/runtime.js rename to vendors/@dropins/elsie/runtime.js diff --git a/scripts/dropins/storefront-cart/161.js b/vendors/@dropins/storefront-cart/161.js similarity index 100% rename from scripts/dropins/storefront-cart/161.js rename to vendors/@dropins/storefront-cart/161.js diff --git a/scripts/dropins/storefront-cart/161.js.LICENSE.txt b/vendors/@dropins/storefront-cart/161.js.LICENSE.txt similarity index 100% rename from scripts/dropins/storefront-cart/161.js.LICENSE.txt rename to vendors/@dropins/storefront-cart/161.js.LICENSE.txt diff --git a/scripts/dropins/storefront-cart/316.js b/vendors/@dropins/storefront-cart/316.js similarity index 100% rename from scripts/dropins/storefront-cart/316.js rename to vendors/@dropins/storefront-cart/316.js diff --git a/scripts/dropins/storefront-cart/316.js.LICENSE.txt b/vendors/@dropins/storefront-cart/316.js.LICENSE.txt similarity index 100% rename from scripts/dropins/storefront-cart/316.js.LICENSE.txt rename to vendors/@dropins/storefront-cart/316.js.LICENSE.txt diff --git a/scripts/dropins/storefront-cart/371.js b/vendors/@dropins/storefront-cart/371.js similarity index 100% rename from scripts/dropins/storefront-cart/371.js rename to vendors/@dropins/storefront-cart/371.js diff --git a/scripts/dropins/storefront-cart/650.js b/vendors/@dropins/storefront-cart/650.js similarity index 100% rename from scripts/dropins/storefront-cart/650.js rename to vendors/@dropins/storefront-cart/650.js diff --git a/scripts/dropins/storefront-cart/650.js.LICENSE.txt b/vendors/@dropins/storefront-cart/650.js.LICENSE.txt similarity index 100% rename from scripts/dropins/storefront-cart/650.js.LICENSE.txt rename to vendors/@dropins/storefront-cart/650.js.LICENSE.txt diff --git a/scripts/dropins/storefront-cart/api.js b/vendors/@dropins/storefront-cart/api.js similarity index 100% rename from scripts/dropins/storefront-cart/api.js rename to vendors/@dropins/storefront-cart/api.js diff --git a/scripts/dropins/storefront-cart/api.js.LICENSE.txt b/vendors/@dropins/storefront-cart/api.js.LICENSE.txt similarity index 100% rename from scripts/dropins/storefront-cart/api.js.LICENSE.txt rename to vendors/@dropins/storefront-cart/api.js.LICENSE.txt diff --git a/scripts/dropins/storefront-cart/containers/Cart.js b/vendors/@dropins/storefront-cart/containers/Cart.js similarity index 100% rename from scripts/dropins/storefront-cart/containers/Cart.js rename to vendors/@dropins/storefront-cart/containers/Cart.js diff --git a/scripts/dropins/storefront-cart/containers/Cart.js.LICENSE.txt b/vendors/@dropins/storefront-cart/containers/Cart.js.LICENSE.txt similarity index 100% rename from scripts/dropins/storefront-cart/containers/Cart.js.LICENSE.txt rename to vendors/@dropins/storefront-cart/containers/Cart.js.LICENSE.txt diff --git a/scripts/dropins/storefront-cart/render.js b/vendors/@dropins/storefront-cart/render.js similarity index 100% rename from scripts/dropins/storefront-cart/render.js rename to vendors/@dropins/storefront-cart/render.js diff --git a/scripts/dropins/storefront-cart/runtime.js b/vendors/@dropins/storefront-cart/runtime.js similarity index 100% rename from scripts/dropins/storefront-cart/runtime.js rename to vendors/@dropins/storefront-cart/runtime.js diff --git a/scripts/dropins/storefront-checkout/183.js b/vendors/@dropins/storefront-checkout/183.js similarity index 100% rename from scripts/dropins/storefront-checkout/183.js rename to vendors/@dropins/storefront-checkout/183.js diff --git a/scripts/dropins/storefront-checkout/223.js b/vendors/@dropins/storefront-checkout/223.js similarity index 100% rename from scripts/dropins/storefront-checkout/223.js rename to vendors/@dropins/storefront-checkout/223.js diff --git a/scripts/dropins/storefront-checkout/223.js.LICENSE.txt b/vendors/@dropins/storefront-checkout/223.js.LICENSE.txt similarity index 100% rename from scripts/dropins/storefront-checkout/223.js.LICENSE.txt rename to vendors/@dropins/storefront-checkout/223.js.LICENSE.txt diff --git a/scripts/dropins/storefront-checkout/270.js b/vendors/@dropins/storefront-checkout/270.js similarity index 100% rename from scripts/dropins/storefront-checkout/270.js rename to vendors/@dropins/storefront-checkout/270.js diff --git a/scripts/dropins/storefront-checkout/323.js b/vendors/@dropins/storefront-checkout/323.js similarity index 100% rename from scripts/dropins/storefront-checkout/323.js rename to vendors/@dropins/storefront-checkout/323.js diff --git a/scripts/dropins/storefront-checkout/358.js b/vendors/@dropins/storefront-checkout/358.js similarity index 100% rename from scripts/dropins/storefront-checkout/358.js rename to vendors/@dropins/storefront-checkout/358.js diff --git a/scripts/dropins/storefront-checkout/358.js.LICENSE.txt b/vendors/@dropins/storefront-checkout/358.js.LICENSE.txt similarity index 100% rename from scripts/dropins/storefront-checkout/358.js.LICENSE.txt rename to vendors/@dropins/storefront-checkout/358.js.LICENSE.txt diff --git a/scripts/dropins/storefront-checkout/378.js b/vendors/@dropins/storefront-checkout/378.js similarity index 100% rename from scripts/dropins/storefront-checkout/378.js rename to vendors/@dropins/storefront-checkout/378.js diff --git a/scripts/dropins/storefront-checkout/378.js.LICENSE.txt b/vendors/@dropins/storefront-checkout/378.js.LICENSE.txt similarity index 100% rename from scripts/dropins/storefront-checkout/378.js.LICENSE.txt rename to vendors/@dropins/storefront-checkout/378.js.LICENSE.txt diff --git a/scripts/dropins/storefront-checkout/41.js b/vendors/@dropins/storefront-checkout/41.js similarity index 100% rename from scripts/dropins/storefront-checkout/41.js rename to vendors/@dropins/storefront-checkout/41.js diff --git a/scripts/dropins/storefront-checkout/41.js.LICENSE.txt b/vendors/@dropins/storefront-checkout/41.js.LICENSE.txt similarity index 100% rename from scripts/dropins/storefront-checkout/41.js.LICENSE.txt rename to vendors/@dropins/storefront-checkout/41.js.LICENSE.txt diff --git a/scripts/dropins/storefront-checkout/424.js b/vendors/@dropins/storefront-checkout/424.js similarity index 100% rename from scripts/dropins/storefront-checkout/424.js rename to vendors/@dropins/storefront-checkout/424.js diff --git a/scripts/dropins/storefront-checkout/424.js.LICENSE.txt b/vendors/@dropins/storefront-checkout/424.js.LICENSE.txt similarity index 100% rename from scripts/dropins/storefront-checkout/424.js.LICENSE.txt rename to vendors/@dropins/storefront-checkout/424.js.LICENSE.txt diff --git a/scripts/dropins/storefront-checkout/448.js b/vendors/@dropins/storefront-checkout/448.js similarity index 100% rename from scripts/dropins/storefront-checkout/448.js rename to vendors/@dropins/storefront-checkout/448.js diff --git a/scripts/dropins/storefront-checkout/449.js b/vendors/@dropins/storefront-checkout/449.js similarity index 100% rename from scripts/dropins/storefront-checkout/449.js rename to vendors/@dropins/storefront-checkout/449.js diff --git a/scripts/dropins/storefront-checkout/467.js b/vendors/@dropins/storefront-checkout/467.js similarity index 100% rename from scripts/dropins/storefront-checkout/467.js rename to vendors/@dropins/storefront-checkout/467.js diff --git a/scripts/dropins/storefront-checkout/467.js.LICENSE.txt b/vendors/@dropins/storefront-checkout/467.js.LICENSE.txt similarity index 100% rename from scripts/dropins/storefront-checkout/467.js.LICENSE.txt rename to vendors/@dropins/storefront-checkout/467.js.LICENSE.txt diff --git a/scripts/dropins/storefront-checkout/499.js b/vendors/@dropins/storefront-checkout/499.js similarity index 100% rename from scripts/dropins/storefront-checkout/499.js rename to vendors/@dropins/storefront-checkout/499.js diff --git a/scripts/dropins/storefront-checkout/613.js b/vendors/@dropins/storefront-checkout/613.js similarity index 100% rename from scripts/dropins/storefront-checkout/613.js rename to vendors/@dropins/storefront-checkout/613.js diff --git a/scripts/dropins/storefront-checkout/613.js.LICENSE.txt b/vendors/@dropins/storefront-checkout/613.js.LICENSE.txt similarity index 100% rename from scripts/dropins/storefront-checkout/613.js.LICENSE.txt rename to vendors/@dropins/storefront-checkout/613.js.LICENSE.txt diff --git a/scripts/dropins/storefront-checkout/757.js b/vendors/@dropins/storefront-checkout/757.js similarity index 100% rename from scripts/dropins/storefront-checkout/757.js rename to vendors/@dropins/storefront-checkout/757.js diff --git a/scripts/dropins/storefront-checkout/774.js b/vendors/@dropins/storefront-checkout/774.js similarity index 100% rename from scripts/dropins/storefront-checkout/774.js rename to vendors/@dropins/storefront-checkout/774.js diff --git a/scripts/dropins/storefront-checkout/774.js.LICENSE.txt b/vendors/@dropins/storefront-checkout/774.js.LICENSE.txt similarity index 100% rename from scripts/dropins/storefront-checkout/774.js.LICENSE.txt rename to vendors/@dropins/storefront-checkout/774.js.LICENSE.txt diff --git a/scripts/dropins/storefront-checkout/79.js b/vendors/@dropins/storefront-checkout/79.js similarity index 100% rename from scripts/dropins/storefront-checkout/79.js rename to vendors/@dropins/storefront-checkout/79.js diff --git a/scripts/dropins/storefront-checkout/79.js.LICENSE.txt b/vendors/@dropins/storefront-checkout/79.js.LICENSE.txt similarity index 100% rename from scripts/dropins/storefront-checkout/79.js.LICENSE.txt rename to vendors/@dropins/storefront-checkout/79.js.LICENSE.txt diff --git a/scripts/dropins/storefront-checkout/822.js b/vendors/@dropins/storefront-checkout/822.js similarity index 100% rename from scripts/dropins/storefront-checkout/822.js rename to vendors/@dropins/storefront-checkout/822.js diff --git a/scripts/dropins/storefront-checkout/840.js b/vendors/@dropins/storefront-checkout/840.js similarity index 100% rename from scripts/dropins/storefront-checkout/840.js rename to vendors/@dropins/storefront-checkout/840.js diff --git a/scripts/dropins/storefront-checkout/93.js b/vendors/@dropins/storefront-checkout/93.js similarity index 100% rename from scripts/dropins/storefront-checkout/93.js rename to vendors/@dropins/storefront-checkout/93.js diff --git a/scripts/dropins/storefront-checkout/94.js b/vendors/@dropins/storefront-checkout/94.js similarity index 100% rename from scripts/dropins/storefront-checkout/94.js rename to vendors/@dropins/storefront-checkout/94.js diff --git a/scripts/dropins/storefront-checkout/94.js.LICENSE.txt b/vendors/@dropins/storefront-checkout/94.js.LICENSE.txt similarity index 100% rename from scripts/dropins/storefront-checkout/94.js.LICENSE.txt rename to vendors/@dropins/storefront-checkout/94.js.LICENSE.txt diff --git a/scripts/dropins/storefront-checkout/947.js b/vendors/@dropins/storefront-checkout/947.js similarity index 100% rename from scripts/dropins/storefront-checkout/947.js rename to vendors/@dropins/storefront-checkout/947.js diff --git a/scripts/dropins/storefront-checkout/947.js.LICENSE.txt b/vendors/@dropins/storefront-checkout/947.js.LICENSE.txt similarity index 100% rename from scripts/dropins/storefront-checkout/947.js.LICENSE.txt rename to vendors/@dropins/storefront-checkout/947.js.LICENSE.txt diff --git a/scripts/dropins/storefront-checkout/965.js b/vendors/@dropins/storefront-checkout/965.js similarity index 100% rename from scripts/dropins/storefront-checkout/965.js rename to vendors/@dropins/storefront-checkout/965.js diff --git a/scripts/dropins/storefront-checkout/965.js.LICENSE.txt b/vendors/@dropins/storefront-checkout/965.js.LICENSE.txt similarity index 100% rename from scripts/dropins/storefront-checkout/965.js.LICENSE.txt rename to vendors/@dropins/storefront-checkout/965.js.LICENSE.txt diff --git a/scripts/dropins/storefront-checkout/967.js b/vendors/@dropins/storefront-checkout/967.js similarity index 100% rename from scripts/dropins/storefront-checkout/967.js rename to vendors/@dropins/storefront-checkout/967.js diff --git a/scripts/dropins/storefront-checkout/api.js b/vendors/@dropins/storefront-checkout/api.js similarity index 100% rename from scripts/dropins/storefront-checkout/api.js rename to vendors/@dropins/storefront-checkout/api.js diff --git a/scripts/dropins/storefront-checkout/api.js.LICENSE.txt b/vendors/@dropins/storefront-checkout/api.js.LICENSE.txt similarity index 100% rename from scripts/dropins/storefront-checkout/api.js.LICENSE.txt rename to vendors/@dropins/storefront-checkout/api.js.LICENSE.txt diff --git a/scripts/dropins/storefront-checkout/containers/BillToShippingAddress.js b/vendors/@dropins/storefront-checkout/containers/BillToShippingAddress.js similarity index 100% rename from scripts/dropins/storefront-checkout/containers/BillToShippingAddress.js rename to vendors/@dropins/storefront-checkout/containers/BillToShippingAddress.js diff --git a/scripts/dropins/storefront-checkout/containers/BillToShippingAddress.js.LICENSE.txt b/vendors/@dropins/storefront-checkout/containers/BillToShippingAddress.js.LICENSE.txt similarity index 100% rename from scripts/dropins/storefront-checkout/containers/BillToShippingAddress.js.LICENSE.txt rename to vendors/@dropins/storefront-checkout/containers/BillToShippingAddress.js.LICENSE.txt diff --git a/scripts/dropins/storefront-checkout/containers/BillingForm.js b/vendors/@dropins/storefront-checkout/containers/BillingForm.js similarity index 100% rename from scripts/dropins/storefront-checkout/containers/BillingForm.js rename to vendors/@dropins/storefront-checkout/containers/BillingForm.js diff --git a/scripts/dropins/storefront-checkout/containers/CartSummary.js b/vendors/@dropins/storefront-checkout/containers/CartSummary.js similarity index 100% rename from scripts/dropins/storefront-checkout/containers/CartSummary.js rename to vendors/@dropins/storefront-checkout/containers/CartSummary.js diff --git a/scripts/dropins/storefront-checkout/containers/Checkout.js b/vendors/@dropins/storefront-checkout/containers/Checkout.js similarity index 100% rename from scripts/dropins/storefront-checkout/containers/Checkout.js rename to vendors/@dropins/storefront-checkout/containers/Checkout.js diff --git a/scripts/dropins/storefront-checkout/containers/Checkout.js.LICENSE.txt b/vendors/@dropins/storefront-checkout/containers/Checkout.js.LICENSE.txt similarity index 100% rename from scripts/dropins/storefront-checkout/containers/Checkout.js.LICENSE.txt rename to vendors/@dropins/storefront-checkout/containers/Checkout.js.LICENSE.txt diff --git a/scripts/dropins/storefront-checkout/containers/ErrorBanner.js b/vendors/@dropins/storefront-checkout/containers/ErrorBanner.js similarity index 100% rename from scripts/dropins/storefront-checkout/containers/ErrorBanner.js rename to vendors/@dropins/storefront-checkout/containers/ErrorBanner.js diff --git a/scripts/dropins/storefront-checkout/containers/LoginForm.js b/vendors/@dropins/storefront-checkout/containers/LoginForm.js similarity index 100% rename from scripts/dropins/storefront-checkout/containers/LoginForm.js rename to vendors/@dropins/storefront-checkout/containers/LoginForm.js diff --git a/scripts/dropins/storefront-checkout/containers/OrderSummary.js b/vendors/@dropins/storefront-checkout/containers/OrderSummary.js similarity index 100% rename from scripts/dropins/storefront-checkout/containers/OrderSummary.js rename to vendors/@dropins/storefront-checkout/containers/OrderSummary.js diff --git a/scripts/dropins/storefront-checkout/containers/PaymentMethods.js b/vendors/@dropins/storefront-checkout/containers/PaymentMethods.js similarity index 100% rename from scripts/dropins/storefront-checkout/containers/PaymentMethods.js rename to vendors/@dropins/storefront-checkout/containers/PaymentMethods.js diff --git a/scripts/dropins/storefront-checkout/containers/PaymentMethods.js.LICENSE.txt b/vendors/@dropins/storefront-checkout/containers/PaymentMethods.js.LICENSE.txt similarity index 100% rename from scripts/dropins/storefront-checkout/containers/PaymentMethods.js.LICENSE.txt rename to vendors/@dropins/storefront-checkout/containers/PaymentMethods.js.LICENSE.txt diff --git a/scripts/dropins/storefront-checkout/containers/PlaceOrder.js b/vendors/@dropins/storefront-checkout/containers/PlaceOrder.js similarity index 100% rename from scripts/dropins/storefront-checkout/containers/PlaceOrder.js rename to vendors/@dropins/storefront-checkout/containers/PlaceOrder.js diff --git a/scripts/dropins/storefront-checkout/containers/PlaceOrder.js.LICENSE.txt b/vendors/@dropins/storefront-checkout/containers/PlaceOrder.js.LICENSE.txt similarity index 100% rename from scripts/dropins/storefront-checkout/containers/PlaceOrder.js.LICENSE.txt rename to vendors/@dropins/storefront-checkout/containers/PlaceOrder.js.LICENSE.txt diff --git a/scripts/dropins/storefront-checkout/containers/ShippingForm.js b/vendors/@dropins/storefront-checkout/containers/ShippingForm.js similarity index 100% rename from scripts/dropins/storefront-checkout/containers/ShippingForm.js rename to vendors/@dropins/storefront-checkout/containers/ShippingForm.js diff --git a/scripts/dropins/storefront-checkout/containers/ShippingMethods.js b/vendors/@dropins/storefront-checkout/containers/ShippingMethods.js similarity index 100% rename from scripts/dropins/storefront-checkout/containers/ShippingMethods.js rename to vendors/@dropins/storefront-checkout/containers/ShippingMethods.js diff --git a/scripts/dropins/storefront-checkout/containers/ShippingMethods.js.LICENSE.txt b/vendors/@dropins/storefront-checkout/containers/ShippingMethods.js.LICENSE.txt similarity index 100% rename from scripts/dropins/storefront-checkout/containers/ShippingMethods.js.LICENSE.txt rename to vendors/@dropins/storefront-checkout/containers/ShippingMethods.js.LICENSE.txt diff --git a/scripts/dropins/storefront-checkout/render.js b/vendors/@dropins/storefront-checkout/render.js similarity index 100% rename from scripts/dropins/storefront-checkout/render.js rename to vendors/@dropins/storefront-checkout/render.js diff --git a/scripts/dropins/storefront-checkout/render.js.LICENSE.txt b/vendors/@dropins/storefront-checkout/render.js.LICENSE.txt similarity index 100% rename from scripts/dropins/storefront-checkout/render.js.LICENSE.txt rename to vendors/@dropins/storefront-checkout/render.js.LICENSE.txt diff --git a/scripts/dropins/storefront-checkout/runtime.js b/vendors/@dropins/storefront-checkout/runtime.js similarity index 100% rename from scripts/dropins/storefront-checkout/runtime.js rename to vendors/@dropins/storefront-checkout/runtime.js diff --git a/scripts/dropins/storefront-order-confirmation/113.js b/vendors/@dropins/storefront-order-confirmation/113.js similarity index 100% rename from scripts/dropins/storefront-order-confirmation/113.js rename to vendors/@dropins/storefront-order-confirmation/113.js diff --git a/scripts/dropins/storefront-order-confirmation/113.js.LICENSE.txt b/vendors/@dropins/storefront-order-confirmation/113.js.LICENSE.txt similarity index 100% rename from scripts/dropins/storefront-order-confirmation/113.js.LICENSE.txt rename to vendors/@dropins/storefront-order-confirmation/113.js.LICENSE.txt diff --git a/scripts/dropins/storefront-order-confirmation/199.js b/vendors/@dropins/storefront-order-confirmation/199.js similarity index 100% rename from scripts/dropins/storefront-order-confirmation/199.js rename to vendors/@dropins/storefront-order-confirmation/199.js diff --git a/scripts/dropins/storefront-order-confirmation/199.js.LICENSE.txt b/vendors/@dropins/storefront-order-confirmation/199.js.LICENSE.txt similarity index 100% rename from scripts/dropins/storefront-order-confirmation/199.js.LICENSE.txt rename to vendors/@dropins/storefront-order-confirmation/199.js.LICENSE.txt diff --git a/scripts/dropins/storefront-order-confirmation/315.js b/vendors/@dropins/storefront-order-confirmation/315.js similarity index 100% rename from scripts/dropins/storefront-order-confirmation/315.js rename to vendors/@dropins/storefront-order-confirmation/315.js diff --git a/scripts/dropins/storefront-order-confirmation/api.js b/vendors/@dropins/storefront-order-confirmation/api.js similarity index 100% rename from scripts/dropins/storefront-order-confirmation/api.js rename to vendors/@dropins/storefront-order-confirmation/api.js diff --git a/scripts/dropins/storefront-order-confirmation/api.js.LICENSE.txt b/vendors/@dropins/storefront-order-confirmation/api.js.LICENSE.txt similarity index 100% rename from scripts/dropins/storefront-order-confirmation/api.js.LICENSE.txt rename to vendors/@dropins/storefront-order-confirmation/api.js.LICENSE.txt diff --git a/scripts/dropins/storefront-order-confirmation/containers/OrderConfirmation.js b/vendors/@dropins/storefront-order-confirmation/containers/OrderConfirmation.js similarity index 100% rename from scripts/dropins/storefront-order-confirmation/containers/OrderConfirmation.js rename to vendors/@dropins/storefront-order-confirmation/containers/OrderConfirmation.js diff --git a/scripts/dropins/storefront-order-confirmation/render.js b/vendors/@dropins/storefront-order-confirmation/render.js similarity index 100% rename from scripts/dropins/storefront-order-confirmation/render.js rename to vendors/@dropins/storefront-order-confirmation/render.js diff --git a/scripts/dropins/storefront-order-confirmation/render.js.LICENSE.txt b/vendors/@dropins/storefront-order-confirmation/render.js.LICENSE.txt similarity index 100% rename from scripts/dropins/storefront-order-confirmation/render.js.LICENSE.txt rename to vendors/@dropins/storefront-order-confirmation/render.js.LICENSE.txt diff --git a/scripts/dropins/storefront-order-confirmation/runtime.js b/vendors/@dropins/storefront-order-confirmation/runtime.js similarity index 100% rename from scripts/dropins/storefront-order-confirmation/runtime.js rename to vendors/@dropins/storefront-order-confirmation/runtime.js diff --git a/scripts/dropins/storefront-pdp/315.js b/vendors/@dropins/storefront-pdp/315.js similarity index 100% rename from scripts/dropins/storefront-pdp/315.js rename to vendors/@dropins/storefront-pdp/315.js diff --git a/scripts/dropins/storefront-pdp/650.js b/vendors/@dropins/storefront-pdp/650.js similarity index 100% rename from scripts/dropins/storefront-pdp/650.js rename to vendors/@dropins/storefront-pdp/650.js diff --git a/scripts/dropins/storefront-pdp/650.js.LICENSE.txt b/vendors/@dropins/storefront-pdp/650.js.LICENSE.txt similarity index 100% rename from scripts/dropins/storefront-pdp/650.js.LICENSE.txt rename to vendors/@dropins/storefront-pdp/650.js.LICENSE.txt diff --git a/scripts/dropins/storefront-pdp/713.js b/vendors/@dropins/storefront-pdp/713.js similarity index 100% rename from scripts/dropins/storefront-pdp/713.js rename to vendors/@dropins/storefront-pdp/713.js diff --git a/scripts/dropins/storefront-pdp/713.js.LICENSE.txt b/vendors/@dropins/storefront-pdp/713.js.LICENSE.txt similarity index 100% rename from scripts/dropins/storefront-pdp/713.js.LICENSE.txt rename to vendors/@dropins/storefront-pdp/713.js.LICENSE.txt diff --git a/scripts/dropins/storefront-pdp/895.js b/vendors/@dropins/storefront-pdp/895.js similarity index 100% rename from scripts/dropins/storefront-pdp/895.js rename to vendors/@dropins/storefront-pdp/895.js diff --git a/scripts/dropins/storefront-pdp/895.js.LICENSE.txt b/vendors/@dropins/storefront-pdp/895.js.LICENSE.txt similarity index 100% rename from scripts/dropins/storefront-pdp/895.js.LICENSE.txt rename to vendors/@dropins/storefront-pdp/895.js.LICENSE.txt diff --git a/scripts/dropins/storefront-pdp/api.js b/vendors/@dropins/storefront-pdp/api.js similarity index 100% rename from scripts/dropins/storefront-pdp/api.js rename to vendors/@dropins/storefront-pdp/api.js diff --git a/scripts/dropins/storefront-pdp/api.js.LICENSE.txt b/vendors/@dropins/storefront-pdp/api.js.LICENSE.txt similarity index 100% rename from scripts/dropins/storefront-pdp/api.js.LICENSE.txt rename to vendors/@dropins/storefront-pdp/api.js.LICENSE.txt diff --git a/scripts/dropins/storefront-pdp/containers/ProductDetails.js b/vendors/@dropins/storefront-pdp/containers/ProductDetails.js similarity index 100% rename from scripts/dropins/storefront-pdp/containers/ProductDetails.js rename to vendors/@dropins/storefront-pdp/containers/ProductDetails.js diff --git a/scripts/dropins/storefront-pdp/containers/ProductDetails.js.LICENSE.txt b/vendors/@dropins/storefront-pdp/containers/ProductDetails.js.LICENSE.txt similarity index 100% rename from scripts/dropins/storefront-pdp/containers/ProductDetails.js.LICENSE.txt rename to vendors/@dropins/storefront-pdp/containers/ProductDetails.js.LICENSE.txt diff --git a/scripts/dropins/storefront-pdp/render.js b/vendors/@dropins/storefront-pdp/render.js similarity index 100% rename from scripts/dropins/storefront-pdp/render.js rename to vendors/@dropins/storefront-pdp/render.js diff --git a/scripts/dropins/storefront-pdp/render.js.LICENSE.txt b/vendors/@dropins/storefront-pdp/render.js.LICENSE.txt similarity index 100% rename from scripts/dropins/storefront-pdp/render.js.LICENSE.txt rename to vendors/@dropins/storefront-pdp/render.js.LICENSE.txt diff --git a/scripts/dropins/storefront-pdp/runtime.js b/vendors/@dropins/storefront-pdp/runtime.js similarity index 100% rename from scripts/dropins/storefront-pdp/runtime.js rename to vendors/@dropins/storefront-pdp/runtime.js