File tree Expand file tree Collapse file tree 2 files changed +28
-0
lines changed Expand file tree Collapse file tree 2 files changed +28
-0
lines changed Original file line number Diff line number Diff line change
1
+ # CHANGELOG
2
+
3
+ ## 1.2.0
4
+
5
+ * Webpack integration with this library has changed. If you're using
6
+ Webpack Encore, you must upgrade to version 1.0.0 or higher of that
7
+ library - #14 .
8
+
9
+ * Controller names were changed and normalized - #12
10
+
11
+ Before: ` @symfony/ux-dropzone/dropzone `
12
+ After: ` symfony--ux-dropzone--dropzone `
13
+
14
+ ## 1.1.0
15
+
16
+ * Support for Stimulus 1 dropped and support for Stimulus 2 added - #4 .
17
+
18
+ ## 1.0.0
19
+
20
+ * Initial release!
Original file line number Diff line number Diff line change @@ -39,6 +39,8 @@ import { startStimulusApp } from '@symfony/stimulus-bridge';
39
39
export const app = startStimulusApp (require .context (' ./controllers' , true , / \. (j| t)sx? $ / ));
40
40
```
41
41
42
+ ## Common Errors
43
+
42
44
If you get this error:
43
45
44
46
> ./assets/bootstrap.js contains a reference to the file @symfony/autoimport .
@@ -53,6 +55,12 @@ Remove the following line in the mentioned file: it's not needed anymore:
53
55
- import '@symfony/autoimport';
54
56
```
55
57
58
+ If you get the error:
59
+
60
+ > Cannot find module '@symfony/stimulus-bridge /webpack-helper'
61
+
62
+ Be sure to upgrade to ` @symfony/webpack-encore ` version 1.0.0 or higher.
63
+
56
64
## Run tests
57
65
58
66
``` sh
You can’t perform that action at this time.
0 commit comments