- jasmine-core can now self test with the jasmine-npm - Add node examples files - Add node_boot.js for node environment - Move jasmine-core npm packaging to .npmignore - removing src_dir and src_files from jasmine.json b/c jasmine-npm does not support requiring source files automatically.
54 lines
1.5 KiB
JavaScript
54 lines
1.5 KiB
JavaScript
module.exports = function(grunt) {
|
|
var pkg = require("./package.json");
|
|
global.jasmineVersion = pkg.version;
|
|
|
|
grunt.initConfig({
|
|
pkg: pkg,
|
|
jshint: require('./grunt/config/jshint.js'),
|
|
concat: require('./grunt/config/concat.js'),
|
|
compass: require('./grunt/config/compass.js'),
|
|
compress: require('./grunt/config/compress.js')
|
|
});
|
|
|
|
require('load-grunt-tasks')(grunt);
|
|
|
|
grunt.loadTasks('grunt/tasks');
|
|
|
|
grunt.registerTask('default', ['jshint:all']);
|
|
|
|
var version = require('./grunt/tasks/version.js');
|
|
var standaloneBuilder = require('./grunt/tasks/build_standalone.js');
|
|
|
|
grunt.registerTask('build:copyVersionToGem',
|
|
"Propagates the version from package.json to version.rb",
|
|
version.copyToGem);
|
|
|
|
grunt.registerTask('buildDistribution',
|
|
'Builds and lints jasmine.js, jasmine-html.js, jasmine.css',
|
|
[
|
|
'compass',
|
|
'jshint:beforeConcat',
|
|
'concat',
|
|
'jshint:afterConcat',
|
|
'build:copyVersionToGem'
|
|
]
|
|
);
|
|
|
|
grunt.registerTask("execSpecsInNode",
|
|
"Run Jasmine core specs in Node.js",
|
|
function() {
|
|
var exitInfo = require("shelljs").exec("node_modules/.bin/jasmine");
|
|
if (exitInfo.code !== 0) {
|
|
grunt.fail.fatal("Specs Failed", exitInfo.code);
|
|
}
|
|
}
|
|
);
|
|
|
|
grunt.registerTask("execSpecsInNode:performance",
|
|
"Run Jasmine performance specs in Node.js",
|
|
function() {
|
|
require("shelljs").exec("node_modules/.bin/jasmine JASMINE_CONFIG_PATH=spec/support/jasmine-performance.json");
|
|
}
|
|
);
|
|
};
|