Skip to content

Commit c5dd738

Browse files
committed
updating CHANGELOG for 0.9.0
1 parent 7273818 commit c5dd738

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# CHANGELOG
22

3+
## 0.9.0
4+
5+
* [BEHAVIOR CHANGE] When using `autoProvidejQuery()`, `window.jQuery` is now also
6+
included (and so will be re-written in the compiled files). If you're also exposing
7+
`jQuery` as a global variable, you'll need to update your code:
8+
9+
```js
10+
// Before: if you had this
11+
window.jQuery = require('jquery');
12+
13+
// After: change to this
14+
global.jQuery = require('jquery');
15+
```
16+
17+
* Vue.js support! See #49
18+
19+
* Typescript support! See #50
20+
321
## 0.8.0
422

523
* Windows support fixed #28

0 commit comments

Comments
 (0)