File tree Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Original file line number Diff line number Diff line change 1
1
# CHANGELOG
2
2
3
+ ## 0.26.0
4
+
5
+ * [ Behavior change] The Babel ` useBuiltIns ` option default value changed
6
+ from ` entry ` to ` false ` , which means that polyfills may no longer be
7
+ provided in the same way. This is due to a change in Babel and core-js.
8
+ To get the same functionality back, run ` yarn add core-js --dev ` , then use:
9
+
10
+ ``` js
11
+ Encore .configureBabel (() => {}, {
12
+ useBuiltIns: ' entry' , // or try "usage"
13
+ corejs: 3
14
+ })
15
+ ```
16
+
17
+ This comes from #545 thanks to @Lyrkan .
18
+
19
+ * Added the ability to "resolve" CSS and Sass files without specifying
20
+ the file extension and by taking advantage of the ` sass ` or ` style `
21
+ attribute in an npm package. For example, you can now import the main
22
+ Bootstrap SASS file from within a SASS file by saying ` @import ~bootstrap ` .
23
+ This will use the ` sass ` attribute from the bootstrap ` package.json `
24
+ file to find which file to load. #474 thanks to @deAtog .
25
+
26
+ * Added a new ` Encore.enableIntegrityHashes() ` , which will cause a new
27
+ ` integrity ` key to be added to ` entrypoints.json ` with integrity values
28
+ that can be included in the ` script ` or ` link ` tag for that asset - #522
29
+ thanks to @Lyrkan .
30
+
31
+ * Allow some parts of ` configureBabel() ` to be used, even if there is
32
+ an external ` .babelrc ` configuration file - #544 thanks to @Lyrkan .
33
+
3
34
## 0.25.0
4
35
5
36
* [ BC BREAK] Various dependency versions were updated, including
You can’t perform that action at this time.
0 commit comments