Skip to content

Commit 4891d3e

Browse files
committed
Inital Upload 🔥
1 parent 7af73da commit 4891d3e

31 files changed

+20785
-0
lines changed

.babelrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"presets": ["es2015"],
3+
}

.eslintrc

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"extends": "eslint-config-cycle",
3+
"env": {
4+
"browser": true,
5+
"node": true
6+
},
7+
"parser": "babel-eslint",
8+
"rules": {
9+
"quotes": 0,
10+
}
11+
}

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
lib/
2+
node_modules
3+
npm-debug.log

.npmignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
src/

.travis.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
language: node_js
2+
node_js:
3+
- "4"
4+
- "5"
5+
before_script:
6+
- "export DISPLAY=:99.0"
7+
- "sh -e /etc/init.d/xvfb start"
8+
- sleep 3 # give xvfb some time to start
9+
script: npm run test

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
# cyclic-router
22
Router Driver built for Cycle.js
3+
4+
Check out the example/ until I get some documentation together :smile:

example/.babelrc

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"presets": ["es2015"],
3+
"plugins": [
4+
"syntax-object-rest-spread",
5+
"transform-object-rest-spread"
6+
]
7+
}

example/app.css

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
html, body {
2+
padding: 0;
3+
margin: 0;
4+
color: black;
5+
}
6+
7+
a {
8+
color: black;
9+
}

0 commit comments

Comments
 (0)