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
18 changes: 18 additions & 0 deletions sensiolabs/typescript-bundle/0.2/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"bundles": {
"Sensiolabs\\TypeScriptBundle\\SensiolabsTypeScriptBundle": ["all"]
},
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
},
"aliases": ["typescript"],
"add-lines": [
{
"file": ".symfony.cli.yaml",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Isn't the file supposed to be named .symfony.local.yaml?

Copy link
Member Author

@Kocal Kocal Nov 21, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

At the current moment yes, but I'm waiting for symfony-cli/symfony-cli#669 to be merged.

But I think I could duplicate these sections, one for the new .symfony.cli.yaml and one for the existing .symfony.local.yaml.

"content": " # Watch and build TypeScript files\n typescript:\n cmd: ['symfony', 'console', 'typescript:build', '--watch']",
"position": "after_target",
"target": "workers:",
"warn_if_missing": false
}
]
}
9 changes: 9 additions & 0 deletions symfony/framework-bundle/7.4/.symfony.cli.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# This configuration file is used by the Symfony CLI tool.
# See https://symfony.com/doc/current/setup/symfony_cli.html for more information.

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:
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
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