Files
symfony-flex-recipes/symfony/asset-mapper/6.3/manifest.json
T
Ryan WeaverandGitHub c590fdaa8e Adding new recipes for Encore, Stimulus & AssetMapper (#1202)
* Adding new recipes for Encore, Stimulus & AssetMapper

* StimulusBundle 1.0 -> 2.9

* updating namespace

* moving encore recipe changes to 2.0

* conflict with older version of flex

* adding ux_controller_link_tags() to recipe

* adding documentation to importmap

* updating message to match core

* Adding ux translator

* fixing translations path

* Documenting the new add-lines configurator

* Fixing translator initial version

* shorten to just var

* remove ux alias - there is no one package to install UX packages currently

* fixing wrong package name
2023-05-27 01:35:12 +02:00

33 lines
979 B
JSON

{
"copy-from-recipe": {
"assets/": "assets/",
"config/": "%CONFIG_DIR%/",
"importmap.php": "importmap.php"
},
"aliases": ["asset-mapper", "importmap"],
"gitignore": [
"/%PUBLIC_DIR%/assets/"
],
"add-lines": [
{
"file": "templates/base.html.twig",
"content": " {{ importmap() }}",
"position": "after_target",
"target": "{% block javascripts %}",
"warn_if_missing": true
},
{
"file": "templates/base.html.twig",
"content": " <link rel=\"stylesheet\" href=\"{{ asset('styles/app.css') }}\">",
"position": "after_target",
"target": "{% block stylesheets %}",
"warn_if_missing": true
}
],
"conflict": {
"symfony/framework-bundle": "<6.3",
"symfony/twig-bundle": "<6.3",
"symfony/flex": "<1.20.0 || >=2.0.0,<2.3.0"
}
}