-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
26 changed files
with
973 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
.DS_Store | ||
.AppleDouble | ||
.LSOverride | ||
|
||
# Icon must ends with two \r. | ||
Icon | ||
|
||
|
||
# Thumbnails | ||
._* | ||
|
||
# Files that might appear on external disk | ||
.Spotlight-V100 | ||
.Trashes | ||
|
||
lib-cov | ||
lcov.info | ||
*.seed | ||
*.log | ||
*.csv | ||
*.dat | ||
*.out | ||
*.pid | ||
*.gz | ||
|
||
pids | ||
logs | ||
results | ||
build | ||
.grunt | ||
|
||
node_modules | ||
bower_components | ||
tmp | ||
|
||
|
||
# workspace files are user-specific | ||
*.sublime-workspace | ||
|
||
# project files should be checked into the repository, unless a significant | ||
# proportion of contributors will probably not be using SublimeText | ||
# *.sublime-project |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,13 @@ | ||
"# flappyBirl" | ||
#HTML5 flappy bird | ||
|
||
play here: http://hyspace.io/flappy/ | ||
|
||
based on http://uralozden.com/flappy/ | ||
|
||
##License | ||
|
||
MIT License | ||
|
||
##Copyright | ||
|
||
THE IMAGES' AND SOUNDS' COPYRIGHT IS OWNED BY THE ORIGINAL GAME'S AUTHOR. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{ | ||
"name": "flappy", | ||
"version": "0.0.1", | ||
"authors": [ | ||
"shan zhou <[email protected]>" | ||
], | ||
"description": "flappy bird in html5", | ||
"main": "index.html", | ||
"keywords": [ | ||
"game", | ||
"flappy", | ||
"bird" | ||
], | ||
"license": "MIT", | ||
"homepage": "https://github.com/hyspace/flappy", | ||
"private": true, | ||
"ignore": [ | ||
"**/.*", | ||
"node_modules", | ||
"bower_components", | ||
"test", | ||
"tests" | ||
], | ||
"dependencies": { | ||
"phaser": "~1.1.4" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"folders": | ||
[ | ||
{ | ||
"follow_symlinks": true, | ||
"path": "." | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
gulp = require 'gulp' | ||
coffee = require 'gulp-coffee' | ||
gutil = require 'gulp-util' | ||
connect = require 'gulp-connect' | ||
concat = require 'gulp-concat' | ||
uglify = require 'gulp-uglify' | ||
|
||
gulp.task 'coffee', -> | ||
gulp.src ['index.coffee'] | ||
.pipe coffee( bare: true ).on('error', gutil.log) | ||
.pipe gulp.dest 'tmp' | ||
|
||
gulp.task 'concat', -> | ||
gulp.src ['bower_components/phaser/phaser.js', 'tmp/index.js'] | ||
.pipe concat('index.min.js') | ||
.pipe uglify() | ||
.pipe gulp.dest '.' | ||
.pipe connect.reload() | ||
|
||
gulp.task 'watch', -> | ||
gulp.watch ['index.coffee', '!gulpfile.coffee'], ['coffee'] | ||
|
||
gulp.task "connect", connect.server( | ||
root: __dirname | ||
port: 3000 | ||
livereload: true | ||
) | ||
|
||
gulp.task 'default', ['coffee', 'concat', 'connect', 'watch'] |
Oops, something went wrong.