Skip to content

Commit c9bc04d

Browse files
committed
Init
0 parents  commit c9bc04d

9 files changed

+7207
-0
lines changed

.babelrc

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"presets": [
3+
"env",
4+
"react",
5+
"stage-2"
6+
]
7+
}

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules/

.travis.yml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
language: node_js
2+
3+
node_js:
4+
- stable
5+
6+
install:
7+
- npm install
8+
9+
script:
10+
- npm test

README.md

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
## Features
2+
3+
* React 16
4+
* Webpack 4
5+
* Babel
6+
* Staging ES Next Features
7+
* Hot Module Replacement
8+
9+
## Installation
10+
11+
* cd bit_timer
12+
* npm install
13+
* npm start
14+
* visit `http://localhost:8080/`

dist/index.html

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>bit timer</title>
6+
</head>
7+
8+
<body>
9+
<div id="app"></div>
10+
<script src="/bundle.js"></script>
11+
</body>
12+
13+
</html>

0 commit comments

Comments
 (0)