Skip to content

Commit 33e78e8

Browse files
committed
refactor build to use rollup and buble
1 parent b308199 commit 33e78e8

25 files changed

+385
-1741
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@ build/Release
3636
node_modules/
3737
jspm_packages/
3838

39+
# Build
40+
/dist/
41+
3942
# Typescript v1 declaration files
4043
typings/
4144

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -153,9 +153,9 @@ As a result the stores are always fresh and a stable and a fresh view is always
153153

154154
## Examples with live demos
155155

156-
- [Clock Widget](https://solkimicreb.github.io/react-easy-state/dist/clock.html) ([source](/examples/clock/))
157-
- [TodoMVC](https://solkimicreb.github.io/react-easy-state/dist/todoMVC.html) ([source](/examples/todoMVC/))
158-
- [Contacts Table](https://solkimicreb.github.io/react-easy-state/dist/contacts.html) ([source](/examples/contacts/))
156+
- [Clock Widget](https://solkimicreb.github.io/react-easy-state/examples/clock/dist) ([source](/examples/clock/))
157+
- [TodoMVC](https://solkimicreb.github.io/react-easy-state/examples/todoMVC/dist) ([source](/examples/todoMVC/))
158+
- [Contacts Table](https://solkimicreb.github.io/react-easy-state/examples/contacts/dist) ([source](/examples/contacts/))
159159

160160
## Platform support
161161

__mocks__/react-easy-state.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
export * from '../src'
33

44
// use this to test the es6 modules build
5-
// export * from '../dist/easyState.module'
5+
// export * from '../dist/easyState.es'
66

77
// use to test the commonJS build
8-
// export * from '../dist/easyState.commonJS'
8+
// export * from '../dist/easyState.cjs'

0 commit comments

Comments
 (0)