Skip to content

Commit 2911c37

Browse files
committed
Fixed exports for non es-6 environments 🍺
1 parent d4a4aa2 commit 2911c37

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CHANGELOG
22

3+
## 1.2.6 (2017-03-26)
4+
5+
- Fixed exports for non es-6 environments
6+
37
## 1.2.5 (2017-03-25)
48

59
- Fixed a bug where the postcss plugin processed nodes it shouldn't have

Container.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
module.exports = require('./build/runtime/Container');
1+
module.exports = require("./build/runtime/Container").default;

containerQuery.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
module.exports = require('./build/postcss/containerQuery').default;
1+
module.exports = require("./build/postcss/containerQuery").default;

initialiseAllContainers.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
module.exports = require('./build/initialiseAllContainers');
1+
module.exports = require("./build/initialiseAllContainers").default;

0 commit comments

Comments
 (0)