Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions symfony/framework-bundle/7.4/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@
"Symfony\\Bundle\\FrameworkBundle\\FrameworkBundle": ["all"]
},
"copy-from-recipe": {
".editorconfig": ".editorconfig",
"symfony-cli.yaml": "symfony-cli.yaml",
"config/": "%CONFIG_DIR%/",
"public/": "%PUBLIC_DIR%/",
"src/": "%SRC_DIR%/",
".editorconfig": ".editorconfig"
"src/": "%SRC_DIR%/"
},
"composer-scripts": {
"cache:clear": "symfony-cmd",
Expand Down
12 changes: 12 additions & 0 deletions symfony/framework-bundle/7.4/symfony-cli.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# This configuration file is used by the Symfony CLI tool.
# See https://symfony.com/doc/current/setup/symfony_cli.html for more information.

# Automatically open the application in the browser after starting the server
open: true

http:
# Use Gzip compression
use_gzip: true

# Processes that automatically run with the server (https://symfony.com/doc/current/setup/symfony_cli.html#configuring-workers)
workers:
7 changes: 7 additions & 0 deletions symfony/webpack-encore-bundle/2.0/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,13 @@
"position": "after_target",
"target": "{% block stylesheets %}",
"warn_if_missing": true
},
{
"file": "symfony-cli.yaml",
"content": " # Watch and build front assets using Webpack Encore\n npm_encore_watch:\n cmd: ['npm', 'run', 'watch']\n # Or instead, run the Webpack Dev Server (https://symfony.com/doc/current/frontend/encore/dev-server.html)\n #npm_encore_dev_server:\n # cmd: ['npm', 'run', 'dev-server']",
"position": "after_target",
"target": "workers:",
"warn_if_missing": false
}
]
}
7 changes: 7 additions & 0 deletions symfonycasts/sass-bundle/0.5/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,13 @@
"warn_if_missing": true,
"target": " missing_import_mode: strict",
"content": " excluded_patterns:\n - '**/assets/styles/**/_*.scss'"
},
{
"file": "symfony-cli.yaml",
"content": " # Watch and build Sass files\n sass:\n cmd: ['symfony', 'console', 'sass:build', '--watch']",
"position": "after_target",
"target": "workers:",
"warn_if_missing": false
}
],
"conflict": {
Expand Down
11 changes: 10 additions & 1 deletion symfonycasts/tailwind-bundle/0.8/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,14 @@
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
},
"aliases": ["tailwind", "tailwindcss"]
"aliases": ["tailwind", "tailwindcss"],
"add-lines": [
{
"file": "symfony-cli.yaml",
"content": " # Watch and build CSS files using Tailwind CSS\n tailwind:\n cmd: ['symfony', 'console', 'tailwind:build', '--watch']",
"position": "after_target",
"target": "workers:",
"warn_if_missing": false
}
]
}
Loading