-
-
Notifications
You must be signed in to change notification settings - Fork 308
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace JS toolchain by asset-mapper when testing ux-turbo
- Loading branch information
1 parent
623fe50
commit 1907c84
Showing
11 changed files
with
51 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"controllers": { | ||
}, | ||
"entrypoints": [] | ||
} |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<?php | ||
|
||
/** | ||
* Returns the importmap for this application. | ||
* | ||
* - "path" is a path inside the asset mapper system. Use the | ||
* "debug:asset-map" command to see the full list of paths. | ||
* | ||
* - "entrypoint" (JavaScript only) set to true for any module that will | ||
* be used as an "entrypoint" (and passed to the importmap() Twig function). | ||
* | ||
* The "importmap:require" command can be used to add new entries to this file. | ||
*/ | ||
return [ | ||
'app' => [ | ||
'path' => './assets/app.js', | ||
'entrypoint' => true, | ||
], | ||
'@hotwired/stimulus' => [ | ||
'version' => '3.2.2', | ||
], | ||
'@symfony/stimulus-bundle' => [ | ||
'path' => '../../vendor/symfony/stimulus-bundle/assets/dist/loader.js', | ||
], | ||
'@symfony/ux-turbo/dist/turbo_stream_controller' => [ | ||
'path' => '../../assets/dist/turbo_stream_controller.js' | ||
], | ||
'@hotwired/turbo' => [ | ||
'version' => '7.3.0', | ||
], | ||
]; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.