Skip to content

Commit 0296288

Browse files
authored
Merge pull request #1 from zeit/master
Master
2 parents 1efd6b2 + a8c344f commit 0296288

File tree

894 files changed

+31818
-2528
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

894 files changed

+31818
-2528
lines changed

.babelrc

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"presets": [
3+
"env",
4+
"react"
5+
],
6+
"plugins": [
7+
"transform-object-rest-spread",
8+
"transform-class-properties",
9+
"transform-runtime"
10+
],
11+
"env": {
12+
"test": {
13+
"presets": [
14+
"es2015",
15+
"./babel"
16+
]
17+
}
18+
}
19+
}

.github/issue_template.md

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
<!--- Provide a general summary of the issue in the Title above -->
2+
3+
<!--
4+
Thank you very much for contributing to Next.js by creating an issue! ❤️
5+
To avoid duplicate issues we ask you to check off the following list
6+
-->
7+
8+
<!-- Checked checkbox should look like this: [x] -->
9+
- [ ] I have searched the [issues](https://github.com/zeit/next.js/issues) of this repository and believe that this is not a duplicate.
10+
11+
## Expected Behavior
12+
<!--- If you're describing a bug, tell us what should happen -->
13+
<!--- If you're suggesting a change/improvement, tell us how it should work -->
14+
15+
## Current Behavior
16+
<!--- If describing a bug, tell us what happens instead of the expected behavior -->
17+
<!--- If suggesting a change/improvement, explain the difference from current behavior -->
18+
19+
## Steps to Reproduce (for bugs)
20+
<!--- Provide a link to a live example, or an unambiguous set of steps to -->
21+
<!--- reproduce this bug. Include code to reproduce, if relevant -->
22+
1.
23+
2.
24+
3.
25+
4.
26+
27+
## Context
28+
<!--- How has this issue affected you? What are you trying to accomplish? -->
29+
<!--- Providing context helps us come up with a solution that is most useful in the real world -->
30+
31+
## Your Environment
32+
<!--- Include as many relevant details about the environment you experienced the bug in -->
33+
| Tech | Version |
34+
|---------|---------|
35+
| next | |
36+
| node | |
37+
| OS | |
38+
| browser | |
39+
| etc | |

.gitignore

+10-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,18 @@
11
# build output
22
dist
3+
.next
34

45
# dependencies
5-
yarn.lock
66
node_modules
7+
package-lock.json
78

89
# logs
9-
npm-debug.log
10+
*.log
1011

11-
# other
12-
.next
12+
# coverage
13+
.nyc_output
14+
coverage
15+
16+
# test output
17+
test/**/out
18+
.DS_Store

.npmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
save-exact = true

.travis.yml

+34-8
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,34 @@
1-
language: node_js
2-
node_js:
3-
- "node"
4-
- "6"
5-
- "4"
6-
cache:
7-
directories:
8-
- node_modules
1+
{
2+
sudo: "required",
3+
dist: "trusty",
4+
addons: {
5+
apt: {
6+
sources: ["google-chrome"],
7+
packages: ["google-chrome-stable"]
8+
}
9+
},
10+
language: "node_js",
11+
node_js: ["6"],
12+
cache: {
13+
directories: ["node-modules"]
14+
},
15+
before_install: [
16+
"rm yarn.lock",
17+
"export DISPLAY=:99.0",
18+
"sh -e /etc/init.d/xvfb start",
19+
"sleep 3"
20+
],
21+
after_script: ["npm run coveralls"],
22+
deploy: {
23+
provider: "npm",
24+
25+
api_key: {
26+
secure:
27+
"br9gLncKeLSoL7iOq0PXFeD1Gp3jRI8QMCSNIrGdZg/MuLeuwYPv36kmMgf7aGIfpjFLtU2/eVrOHSB+T5g1nKgOsqmWsfZE1tQYWph0//ookd/sj+IyxIx8nVLbUV/C4ctYOhX/efotRgNn56w5Av5hWc1IQLmW9mSN8ijrQnM+GzRI8QitiofeY2EP3N1eO8vC8E2oGkOsAdcypiX6lFG908zyWt7X2SD+iOsK2eAHjxoAEUdrxE5a8gTDhcTH6qnmtBs9rCeEKbO3JZjEy5dvccxlX3Nd+2GC1rckayk6o5L/zveTilsUx6Auqqbwn1dT5ffQuYsV4RPofs8IMrhnizc8y+OfUcCCpBJ4ia4w7N8FEP56TnRNTFoFBGJL5Y6NfeT0HHAlClxUWMG9pRGWGN+sskODDQ9FEntGZoqwV396ogs+3YhkxbY0AIr84QOctflsFcPtOgr/CoBeOsjbB+o9+Rlsqwlf3u3B7qhtU9eV6KcMfK4x9qW+2cwTllK+gD8S9wILx5BChkfx99g/7u/Rg1PCym64tTsDOBtqTVC2YCqeYYvjmpw4Vl3ofLrFsoNQnbmb6Q5+JSpOcJ/bEj7P/FuZdlU0fNV28tFhElu5caKhSCJz/avUlXG7NeveW1Ee8gjhURC4V/l4ryacyjA2vcDY/4RRkWtHNr4="
28+
},
29+
skip_cleanup: true,
30+
on: {
31+
tags: true
32+
}
33+
}
34+
}

0 commit comments

Comments
 (0)