Created
May 6, 2015 14:04
-
-
Save kingsleyh/b06f75b11d1ef71697f9 to your computer and use it in GitHub Desktop.
tim
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
/*global module, require */ | |
module.exports = function( grunt ) { | |
'use strict'; | |
// Livereload and connect variables | |
var LIVERELOAD_PORT = 35729; | |
var lrSnippet = require('connect-livereload')({ | |
port: LIVERELOAD_PORT | |
}); | |
var mountFolder = function( connect, dir ) { | |
return connect.static(require('path').resolve(dir)); | |
}; | |
var mixIn = require('mout/object/mixIn'); | |
var requireConfig = { | |
baseUrl: 'app/', | |
paths: { | |
'jquery': '../lib/jquery/jquery', | |
'knockout': '../lib/knockout/knockout-2.3.0.debug', | |
'text': '../lib/require/text', | |
'durandal': '../lib/durandal/js', | |
'plugins': '../lib/durandal/js/plugins', | |
'jasmine-jquery': '../lib/jasmine-jquery/lib/jasmine-jquery', | |
'transitions': '../lib/durandal/js/transitions', | |
'jastest': '../lib/jastest/jastest', | |
'sinon': '../lib/sinon/sinon-1.7.3' | |
} | |
}; | |
grunt.initConfig({ | |
pkg: grunt.file.readJSON('package.json'), | |
clean: { | |
build: ['build/*'] | |
}, | |
connect: { | |
build: { | |
options: { | |
port: 9001, | |
hostname: 'localhost', | |
base: 'build' | |
} | |
}, | |
dev: { | |
options: { | |
port: 8999, | |
hostname: 'localhost', | |
middleware: function( connect ) { | |
return [lrSnippet, mountFolder(connect, '.')]; | |
} | |
} | |
}, | |
tdd: { | |
options: { | |
port: 8998, | |
hostname: 'localhost', | |
middleware: function( connect ) { | |
return [lrSnippet, mountFolder(connect, '.')]; | |
} | |
} | |
} | |
}, | |
copy: { | |
lib: { | |
src: 'lib/**/**', | |
dest: 'build/' | |
}, | |
index: { | |
src: 'index.html', | |
dest: 'build/' | |
}, | |
css: { | |
src: 'css/**', | |
dest: 'build/' | |
} | |
}, | |
open: { | |
dev: { | |
path: 'http://localhost:<%= connect.dev.options.port %>/_SpecRunner.html' | |
}, | |
tdd: { | |
path: 'http://localhost:<%= connect.tdd.options.port %>/_SpecRunner.html' | |
}, | |
build: { | |
path: 'http://localhost:<%= connect.build.options.port %>' | |
} | |
}, | |
durandal: { | |
main: { | |
src: ['app/**/*.*', 'lib/durandal/**/*.js'], | |
options: { | |
name: '../lib/require/almond-custom', | |
baseUrl: requireConfig.baseUrl, | |
mainPath: 'app/main', | |
paths: mixIn({}, requireConfig.paths, { 'almond': '../lib/require/almond-custom.js' }), | |
exclude: [], | |
optimize: 'none', | |
out: 'build/app/main.js' | |
} | |
} | |
}, | |
jasmine: { | |
dev: { | |
src: 'app/viewmodels/*.js', | |
options: { | |
specs: 'test/specs/old/**/*spec.js', | |
keepRunner: true, | |
template: require('grunt-template-jasmine-requirejs'), | |
templateOptions: { | |
requireConfigFile: 'app/main.js', | |
requireConfig: requireConfig | |
} | |
} | |
}, | |
tdd: { | |
src: 'app/viewmodels/*.js', | |
options: { | |
specs: 'test/specs/dev/**/*.spec.js', | |
summary: true, | |
display: 'full', | |
keepRunner: true, | |
template: require('grunt-template-jasmine-requirejs-preloader'), | |
templateOptions: { | |
requireConfig: requireConfig | |
// requireConfigFile: 'app/main.js' | |
// preloads: ['jquery', 'jasmine-jquery', 'sinon', 'jastest'] | |
}, | |
version: '1.3.1' | |
} | |
}, | |
build: { | |
options: { | |
specs: 'test/specs/build/**/*spec.js', | |
keepRunner: true, | |
template: require('grunt-template-jasmine-requirejs'), | |
templateOptions: { | |
requireConfig: requireConfig | |
} | |
} | |
} | |
}, | |
jshint: { | |
all: ['Gruntfile.js', 'app/**/*.js', 'test/specs/**/*.js'] | |
}, | |
uglify: { | |
options: { | |
banner: '/*! <%= pkg.name %> <%= grunt.template.today("yyyy-mm-dd") %> \n' + | |
'* Copyright (c) <%= grunt.template.today("yyyy") %> YourName/YourCompany \n' + | |
'* Available via the MIT license.\n' + | |
'* see: http://opensource.org/licenses/MIT for blueprint.\n' + | |
'*/\n' | |
}, | |
build: { | |
src: 'build/app/main.js', | |
dest: 'build/app/main-built.js' | |
} | |
}, | |
watch: { | |
build: { | |
files: ['build/**/*.js'], | |
tasks: ['jasmine:build'] | |
}, | |
dev: { | |
files: ['test/specs/dev/**/*spec.js', 'app/**/*.js'], | |
tasks: ['jasmine:dev'], | |
options: { | |
livereload: true | |
} | |
}, | |
tdd: { | |
files: ['test/specs/dev/**/*spec.js', 'app/**/*.js'], | |
tasks: ['jasmine:tdd'], | |
options: { | |
livereload: true | |
} | |
} | |
} | |
} | |
); | |
// Loading plugin(s) | |
grunt.loadNpmTasks('grunt-contrib-clean'); | |
grunt.loadNpmTasks('grunt-contrib-connect'); | |
grunt.loadNpmTasks('grunt-contrib-copy'); | |
grunt.loadNpmTasks('grunt-contrib-jasmine'); | |
grunt.loadNpmTasks('grunt-contrib-jshint'); | |
grunt.loadNpmTasks('grunt-contrib-uglify'); | |
grunt.loadNpmTasks('grunt-contrib-watch'); | |
grunt.loadNpmTasks('grunt-open'); | |
grunt.loadNpmTasks('grunt-durandal'); | |
grunt.registerTask('default', ['jshint', 'jasmine:dev', 'connect:dev:livereload', 'open:dev', 'watch:dev']); | |
grunt.registerTask('oops', ['connect:tdd:livereload','jasmine:tdd','open:tdd','watch:tdd']); | |
grunt.registerTask('build', ['jshint', 'jasmine:dev', 'clean', 'copy', 'durandal:main', 'uglify', 'jasmine:build', 'connect:build', 'open:build', 'watch:build']); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment