mirror of
https://github.com/symfony/recipes.git
synced 2026-09-18 10:36:43 +03:00
simplify regex in the stimulus app bootstrap.js (#1002)
* simplify regex in the stimulus app bootstrap.js use character class instead of group capture with an alternation * simplify regex in the stimulus app bootstrap.js for 1.6 * simplify regex in the stimulus app bootstrap.js for 1.0
This commit is contained in:
+1
-1
@@ -4,7 +4,7 @@ import { startStimulusApp } from '@symfony/stimulus-bridge';
|
||||
export const app = startStimulusApp(require.context(
|
||||
'@symfony/stimulus-bridge/lazy-controller-loader!./controllers',
|
||||
true,
|
||||
/\.(j|t)sx?$/
|
||||
/\.[jt]sx?$/
|
||||
));
|
||||
|
||||
// register any custom, 3rd party controllers here
|
||||
|
||||
+1
-1
@@ -4,7 +4,7 @@ import { startStimulusApp } from '@symfony/stimulus-bridge';
|
||||
export const app = startStimulusApp(require.context(
|
||||
'@symfony/stimulus-bridge/lazy-controller-loader!./controllers',
|
||||
true,
|
||||
/\.(j|t)sx?$/
|
||||
/\.[jt]sx?$/
|
||||
));
|
||||
|
||||
// register any custom, 3rd party controllers here
|
||||
|
||||
+1
-1
@@ -4,7 +4,7 @@ import { startStimulusApp } from '@symfony/stimulus-bridge';
|
||||
export const app = startStimulusApp(require.context(
|
||||
'@symfony/stimulus-bridge/lazy-controller-loader!./controllers',
|
||||
true,
|
||||
/\.(j|t)sx?$/
|
||||
/\.[jt]sx?$/
|
||||
));
|
||||
|
||||
// register any custom, 3rd party controllers here
|
||||
|
||||
Reference in New Issue
Block a user