diff --git a/sylius/product-bundle-plugin/1.0/config/packages/sylius_product_bundle.yaml b/sylius/product-bundle-plugin/1.0/config/packages/sylius_product_bundle.yaml new file mode 100644 index 00000000..493b9e27 --- /dev/null +++ b/sylius/product-bundle-plugin/1.0/config/packages/sylius_product_bundle.yaml @@ -0,0 +1,2 @@ +imports: + - { resource: "@SyliusProductBundlePlugin/config/config.yaml" } diff --git a/sylius/product-bundle-plugin/1.0/config/routes/sylius_product_bundle.yaml b/sylius/product-bundle-plugin/1.0/config/routes/sylius_product_bundle.yaml new file mode 100644 index 00000000..64004c11 --- /dev/null +++ b/sylius/product-bundle-plugin/1.0/config/routes/sylius_product_bundle.yaml @@ -0,0 +1,2 @@ +sylius_product_bundle: + resource: "@SyliusProductBundlePlugin/config/routes.yaml" diff --git a/sylius/product-bundle-plugin/1.0/manifest.json b/sylius/product-bundle-plugin/1.0/manifest.json new file mode 100644 index 00000000..9be4142b --- /dev/null +++ b/sylius/product-bundle-plugin/1.0/manifest.json @@ -0,0 +1,24 @@ +{ + "bundles": { + "Sylius\\ProductBundlePlugin\\SyliusProductBundlePlugin": [ + "all" + ] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "add-lines": [ + { + "file": "assets/admin/entrypoint.js", + "content": "import '@vendor/sylius/product-bundle-plugin/assets/admin/entrypoint';", + "position": "bottom", + "warn_if_missing": true + }, + { + "file": "assets/shop/entrypoint.js", + "content": "import '@vendor/sylius/product-bundle-plugin/assets/shop/entrypoint';", + "position": "bottom", + "warn_if_missing": true + } + ] +}