-
-
Notifications
You must be signed in to change notification settings - Fork 354
/
Copy pathimportmap.php
203 lines (202 loc) · 4.86 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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
<?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,
],
'app-react' => [
'path' => './assets/react/app-react.js',
'entrypoint' => true,
],
'app-svelte' => [
'path' => './assets/svelte/app-svelte.js',
'entrypoint' => true,
],
'app-vue' => [
'path' => './assets/vue/app-vue.js',
'entrypoint' => true,
],
'demos/live-memory' => [
'path' => './assets/demos/live-memory.js',
'entrypoint' => true,
],
'@symfony/stimulus-bundle' => [
'path' => '@symfony/stimulus-bundle/loader.js',
],
'@symfony/ux-react' => [
'path' => '@symfony/ux-react/loader.js',
],
'@symfony/ux-vue' => [
'path' => '@symfony/ux-vue/loader.js',
],
'@symfony/ux-svelte' => [
'path' => '@symfony/ux-svelte/loader.js',
],
'@symfony/ux-translator' => [
'path' => '@symfony/ux-translator/translator_controller.js',
],
'@app/translations' => [
'path' => 'var/translations/index.js',
],
'@app/translations/configuration' => [
'path' => 'var/translations/configuration.js',
],
'@symfony/ux-live-component' => [
'path' => './vendor/symfony/ux-live-component/assets/dist/live_controller.js',
],
'bootstrap' => [
'version' => '5.3.3',
],
'@popperjs/core' => [
'version' => '2.11.8',
],
'stimulus-clipboard' => [
'version' => '4.0.1',
],
'@hotwired/stimulus' => [
'version' => '3.2.2',
],
'tom-select' => [
'version' => '2.3.1',
],
'react' => [
'version' => '18.3.1',
],
'react-dom' => [
'version' => '18.3.1',
],
'vue' => [
'version' => '3.4.31',
'package_specifier' => 'vue/dist/vue.esm-bundler.js',
],
'swup' => [
'version' => '3.1.1',
],
'delegate-it' => [
'version' => '6.1.0',
],
'@swup/debug-plugin' => [
'version' => '3.0.0',
],
'@swup/fade-theme' => [
'version' => '1.0.5',
],
'@swup/forms-plugin' => [
'version' => '2.0.1',
],
'@swup/slide-theme' => [
'version' => '1.0.5',
],
'@swup/plugin' => [
'version' => '2.0.3',
],
'@hotwired/turbo' => [
'version' => '8.0.4',
],
'typed.js' => [
'version' => '2.1.0',
],
'snarkdown' => [
'version' => '2.0.0',
],
'cropperjs' => [
'version' => '1.6.2',
],
'svelte/transition' => [
'version' => '4.2.18',
],
'svelte/animate' => [
'version' => '4.2.18',
],
'svelte/internal' => [
'version' => '3.59.2',
],
'intl-messageformat' => [
'version' => '10.5.14',
],
'@vue/runtime-dom' => [
'version' => '3.4.31',
],
'@vue/runtime-core' => [
'version' => '3.4.31',
],
'@vue/shared' => [
'version' => '3.4.31',
],
'@vue/reactivity' => [
'version' => '3.4.31',
],
'@vue/compiler-dom' => [
'version' => '3.4.31',
],
'@vue/compiler-core' => [
'version' => '3.4.31',
],
'tslib' => [
'version' => '2.6.3',
],
'@formatjs/icu-messageformat-parser' => [
'version' => '2.7.8',
],
'@formatjs/icu-skeleton-parser' => [
'version' => '1.8.2',
],
'@formatjs/fast-memoize' => [
'version' => '2.2.0',
],
'tom-select/dist/css/tom-select.bootstrap5.css' => [
'version' => '2.3.1',
'type' => 'css',
],
'cropperjs/dist/cropper.min.css' => [
'version' => '1.6.2',
'type' => 'css',
],
'scheduler' => [
'version' => '0.23.2',
],
'tippy.js' => [
'version' => '6.3.7',
],
'tippy.js/dist/tippy.css' => [
'version' => '6.3.7',
'type' => 'css',
],
'tippy.js/themes/translucent.css' => [
'version' => '6.3.7',
'type' => 'css',
],
'path-to-regexp' => [
'version' => '6.2.1',
],
'@swup/theme' => [
'version' => '2.1.0',
],
'@kurkle/color' => [
'version' => '0.3.2',
],
'chart.js' => [
'version' => '4.4.3',
],
'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',
],
];