-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathimportmap.php
155 lines (154 loc) · 3.61 KB
/
importmap.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<?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,
],
'admin' => [
'path' => './assets/admin.js',
'entrypoint' => true,
],
'@hotwired/stimulus' => [
'version' => '3.2.2',
],
'@symfony/stimulus-bundle' => [
'path' => './vendor/symfony/stimulus-bundle/assets/dist/loader.js',
],
'@hotwired/turbo' => [
'version' => '8.0.5',
],
'leaflet' => [
'version' => '1.9.4',
],
'leaflet/dist/leaflet.min.css' => [
'version' => '1.9.4',
'type' => 'css',
],
'@symfony/ux-leaflet-map' => [
'path' => './vendor/symfony/ux-leaflet-map/assets/dist/map_controller.js',
],
'codemirror' => [
'version' => '6.0.1',
],
'@codemirror/lang-markdown' => [
'version' => '6.3.0',
],
'@codemirror/lang-sql' => [
'version' => '6.8.0',
],
'@codemirror/lang-css' => [
'version' => '6.3.0',
],
'@codemirror/lang-html' => [
'version' => '6.4.9',
],
'@codemirror/lang-yaml' => [
'version' => '6.1.1',
],
'@codemirror/lang-javascript' => [
'version' => '6.2.2',
],
'@codemirror/lang-vue' => [
'version' => '0.1.3',
],
'@codemirror/lang-sass' => [
'version' => '6.0.2',
],
'@codemirror/lang-php' => [
'version' => '6.0.1',
],
'@codemirror/lang-json' => [
'version' => '6.0.1',
],
'@codemirror/view' => [
'version' => '6.32.0',
],
'@codemirror/state' => [
'version' => '6.4.1',
],
'@codemirror/language' => [
'version' => '6.10.2',
],
'@codemirror/commands' => [
'version' => '6.3.3',
],
'@codemirror/search' => [
'version' => '6.5.5',
],
'@codemirror/autocomplete' => [
'version' => '6.12.0',
],
'@codemirror/lint' => [
'version' => '6.4.2',
],
'@lezer/markdown' => [
'version' => '1.3.1',
],
'@lezer/common' => [
'version' => '1.2.1',
],
'@lezer/highlight' => [
'version' => '1.2.1',
],
'@lezer/lr' => [
'version' => '1.4.0',
],
'@lezer/css' => [
'version' => '1.1.8',
],
'@lezer/html' => [
'version' => '1.3.9',
],
'@lezer/yaml' => [
'version' => '1.0.2',
],
'@lezer/javascript' => [
'version' => '1.4.13',
],
'@lezer/sass' => [
'version' => '1.0.7',
],
'@lezer/php' => [
'version' => '1.0.2',
],
'@lezer/json' => [
'version' => '1.0.2',
],
'style-mod' => [
'version' => '4.1.2',
],
'w3c-keyname' => [
'version' => '2.2.8',
],
'crelt' => [
'version' => '1.0.6',
],
'@codemirror/legacy-modes/mode/shell' => [
'version' => '6.4.1',
],
'@fsegurai/codemirror-theme-github-light' => [
'version' => '6.0.2',
],
'@fsegurai/codemirror-theme-github-dark' => [
'version' => '6.0.2',
],
'inter-ui/inter.css' => [
'version' => '4.1.0',
'type' => 'css',
],
'inter-ui/inter-variable.css' => [
'version' => '4.1.0',
'type' => 'css',
],
];