This file contains hidden or 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
module.exports = { | |
easeIn: 'ease-in', | |
easeOut: 'ease-out', | |
easeInOut: 'ease-in-out', | |
snap: [0.000, 1.000, 0.500, 1.000], | |
linear: [0.250, 0.250, 0.750, 0.750], | |
easeInQuad: [0.550, 0.085, 0.680, 0.530], | |
easeInCubic: [0.550, 0.055, 0.675, 0.190], | |
easeInQuart: [0.895, 0.030, 0.685, 0.220], | |
easeInQuint: [0.755, 0.050, 0.855, 0.060], |
This file contains hidden or 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
'use strict'; | |
var gulp = require( 'gulp' ), | |
server = require( 'gulp-develop-server' ), | |
prefix = require( 'gulp-autoprefixer' ), | |
sass = require( 'gulp-ruby-sass' ), | |
cssmin = require( 'gulp-minify-css' ), | |
uglify = require( 'gulp-uglify' ), | |
imagemin = require( 'gulp-imagemin' ), | |
sourcemaps = require( 'gulp-sourcemaps' ), |
This file contains hidden or 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 express = require( 'express' ), | |
bodyParser = require( 'body-parser' ), | |
pjax = require( './pjax-helper' ); | |
var app = express(); | |
app.set( 'views', __dirname + '/views' ); | |
app.set( 'view engine', 'jade' ); | |
app.use( pjax() ); |
This file contains hidden or 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
'use strict'; | |
var _ = require( 'lodash' ), | |
gutil = require( 'gulp-util' ), | |
Transform = require( 'stream' ).Transform, | |
fork = require( 'child_process' ).fork; | |
function started( callback ) { | |
return function() { |
This file contains hidden or 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
'use strict'; | |
var gulp = require( 'gulp' ), | |
gutil = require( 'gulp-util' ), | |
fork = require( 'child_process' ).fork, | |
tinyLr = require( 'tiny-lr' ), | |
async = require( 'async' ); | |
var dirs = { | |
app: [ |
This file contains hidden or 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
/** | |
* | |
* White Noise Ambient | |
* | |
* narirou | |
* 2013/07/22 | |
* | |
* Public licenced. | |
* | |
*/ |