Skip to content

Commit e87cebb

Browse files
committed
[fix] Build issue
1 parent d8c5bbf commit e87cebb

File tree

10 files changed

+17
-6
lines changed

10 files changed

+17
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
### 5.1.1
4+
5+
- Fix build process mistake :-/
6+
37
### 5.1.0
48

59
- Removed fallback from `Microcosm::pull` which returns all state

dist/Downstream.js

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/Downstream.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/Microcosm.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/Microcosm.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/Upstream.js

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/Upstream.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "microcosm",
3-
"version": "5.1.0",
3+
"version": "5.1.1",
44
"description": "A functional flux architecture",
55
"main": "dist/Microcosm.js",
66
"scripts": {

src/index.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,7 @@
55
*/
66

77
export let tag = require('./tag')
8+
export let Upstream = require('./Upstream')
9+
export let Downstream = require('./Downstream')
10+
811
export default require('./Microcosm')

webpack.config.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@ module.exports = {
55
devtool : 'source-map',
66

77
entry: {
8-
Microcosm : './src/index.js',
9-
Upstream : './src/Upstream',
10-
Downstream : './src/Downstream'
8+
Microcosm : './src/index.js'
119
},
1210

1311
output: {

0 commit comments

Comments
 (0)