Skip to content

Commit f9fbb94

Browse files
committed
Adds stylized that animates on push
1 parent 569c101 commit f9fbb94

File tree

5 files changed

+405
-170
lines changed

5 files changed

+405
-170
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
node_modules/
22
.DS_Store
3+
babel_cache/
4+
/dist

index.js

Lines changed: 0 additions & 167 deletions
This file was deleted.

package.json

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,25 @@
22
"name": "gitrocket",
33
"version": "1.0.0",
44
"description": "",
5-
"main": "index.js",
5+
"main": "dist/index.js",
6+
"files": [
7+
"dist/index.js"
8+
],
69
"scripts": {
7-
"test": "echo \"Error: no test specified\" && exit 1"
10+
"build": "webpack -p",
11+
"dev": "webpack --watch"
812
},
913
"author": "",
10-
"license": "ISC"
14+
"license": "ISC",
15+
"dependencies": {
16+
"babel-cli": "^6.24.1",
17+
"babel-core": "^6.25.0",
18+
"babel-loader": "^7.1.1",
19+
"babel-preset-es2015": "^6.24.1",
20+
"babel-preset-react": "^6.24.1",
21+
"path": "^0.12.7",
22+
"styled-components": "^2.1.1",
23+
"webpack": "^2.2.0",
24+
"webpack-node-externals": "^1.6.0"
25+
}
1126
}

0 commit comments

Comments
 (0)