Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/async require support #18

Merged
merged 24 commits into from
Jun 3, 2017
Merged
Show file tree
Hide file tree
Changes from 23 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
64b9b2f
Components are now resolved with a Promise #2
jennasalau May 27, 2017
b703ed2
Updated tests for new async module resolution
jennasalau May 27, 2017
01ac7a6
Fixed issues with Logger not passing arguments spread
jennasalau May 27, 2017
f07943d
Now using prop-types package for examples
jennasalau May 27, 2017
e328841
Put prop docs in a table
jennasalau May 27, 2017
afd510a
Updated prefix documentation
jennasalau May 27, 2017
2292efe
Add jump links
jennasalau May 27, 2017
94caf55
Updated compatablitly
jennasalau May 27, 2017
e820126
Fix table
jennasalau May 27, 2017
1f8fc82
Added code splitting docs
jennasalau May 27, 2017
b810c67
Updated docs with lifecycle events
jennasalau May 27, 2017
9b04d1a
Removed uneeded test
jennasalau May 27, 2017
919b75a
Updated examples to use code blocks
jennasalau May 27, 2017
33daa6c
Changed readme to use spaces (better github appearance)
jennasalau May 27, 2017
3708c90
Attempting to run tests on Chrome in Travis
jennasalau May 27, 2017
1284165
Travis updates
jennasalau May 27, 2017
2da3707
Updating travis config
jennasalau May 27, 2017
29c69ba
Karma fixes
jennasalau May 27, 2017
63e3086
Updating travis config
jennasalau May 27, 2017
9bf92a9
Use node 7 in tests
jennasalau May 27, 2017
0ff8128
Attempt to fix build
jennasalau May 27, 2017
83fca2b
Travis now runs on Firefox
jennasalau May 27, 2017
f41e33c
Update some code blocks in readme to use JS syntax
jennasalau May 27, 2017
5522205
Clean up & refactored some names to be more descriptive
jennasalau Jun 3, 2017
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
---
language: node_js
node_js: "stable"
node_js:
- "6"
sudo: false

- 7
addons:
firefox: "49.0"
script: node_modules/karma/bin/karma start karma.conf.js --single-run
before_install:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- sleep 3
Loading