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
[ | |
"Cut Man", | |
"Guts Man", | |
"Ice Man", | |
"Bomb Man", | |
"Fire Man", | |
"Electric Man", | |
"Time Man", | |
"Oil Man", | |
"Metal Man", |
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
var gulp = require('gulp'); | |
var concat = require('gulp-concat'); | |
var uglify = require('gulp-uglify'); | |
var notify = require('gulp-notify'); | |
var rename = require('gulp-rename'); | |
var wrap = require('gulp-wrap'); | |
var nib = require('nib'); | |
var stylus = require('gulp-stylus'); | |
gulp.task('javascript', function() { |
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
var Hapi = require('hapi'); | |
var Bell = require('bell'); | |
var AuthCookie = require('hapi-auth-cookie'); | |
var server = new Hapi.Server(); | |
server.connection({ port: 9001 }); | |
server.register([Bell, AuthCookie], function (err) { | |
if (err) { |