mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-06-20 17:15:51 +02:00
Updated symfony/stimulus-bridge recipe
This commit is contained in:
parent
52c8ea13af
commit
7658cfcdbd
3 changed files with 12 additions and 5 deletions
3
assets/bootstrap.js
vendored
3
assets/bootstrap.js
vendored
|
@ -4,8 +4,7 @@ import { startStimulusApp } from '@symfony/stimulus-bridge';
|
||||||
export const app = startStimulusApp(require.context(
|
export const app = startStimulusApp(require.context(
|
||||||
'@symfony/stimulus-bridge/lazy-controller-loader!./controllers',
|
'@symfony/stimulus-bridge/lazy-controller-loader!./controllers',
|
||||||
true,
|
true,
|
||||||
/\.(j|t)sx?$/
|
/\.[jt]sx?$/
|
||||||
));
|
));
|
||||||
|
|
||||||
// register any custom, 3rd party controllers here
|
// register any custom, 3rd party controllers here
|
||||||
// app.register('some_controller_name', SomeImportedController);
|
// app.register('some_controller_name', SomeImportedController);
|
||||||
|
|
11
symfony.lock
11
symfony.lock
|
@ -672,9 +672,14 @@
|
||||||
"recipe": {
|
"recipe": {
|
||||||
"repo": "github.com/symfony/recipes",
|
"repo": "github.com/symfony/recipes",
|
||||||
"branch": "main",
|
"branch": "main",
|
||||||
"version": "2.8",
|
"version": "2.9",
|
||||||
"ref": "9e33a8a3794b603fb4be6c04ee5ecab901ce549e"
|
"ref": "05c45071c7ecacc1e48f94bc43c1f8d4405fb2b2"
|
||||||
}
|
},
|
||||||
|
"files": [
|
||||||
|
"./assets/bootstrap.js",
|
||||||
|
"./assets/controllers.json",
|
||||||
|
"./assets/controllers/hello_controller.js"
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"symfony/stopwatch": {
|
"symfony/stopwatch": {
|
||||||
"version": "v4.2.3"
|
"version": "v4.2.3"
|
||||||
|
|
|
@ -71,6 +71,9 @@ Encore
|
||||||
// When enabled, Webpack "splits" your files into smaller pieces for greater optimization.
|
// When enabled, Webpack "splits" your files into smaller pieces for greater optimization.
|
||||||
.splitEntryChunks()
|
.splitEntryChunks()
|
||||||
|
|
||||||
|
// enables the Symfony UX Stimulus bridge (used in assets/bootstrap.js)
|
||||||
|
.enableStimulusBridge('./assets/controllers.json')
|
||||||
|
|
||||||
// will require an extra script tag for runtime.js
|
// will require an extra script tag for runtime.js
|
||||||
// but, you probably want this, unless you're building a single-page app
|
// but, you probably want this, unless you're building a single-page app
|
||||||
.enableSingleRuntimeChunk()
|
.enableSingleRuntimeChunk()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue