You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

97 lines
2.7 KiB

'use strict';
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
babel: {
options: {
presets: ['babel-preset-env']
},
dist: {
files: [{
expand: 'true',
cwd: 'src/js',
src: ['*.js', '**/*.js'],
dest: 'dist/'
}]
}
},
browserify: {
adapterGlobalObject: {
src: ['./dist/adapter_core5.js'],
dest: './out/adapter.js',
options: {
browserifyOptions: {
// Exposes shim methods in a global object to the browser.
// The tests require this.
standalone: 'adapter'
}
}
},
// Use this if you do not want adapter to expose anything to the global
// scope.
adapterAndNoGlobalObject: {
src: ['./dist/adapter_core5.js'],
dest: './out/adapter_no_global.js'
},
// Use this if you do not want Microsoft Edge shim to be included.
adapterNoEdge: {
src: ['./dist/adapter_core5.js'],
dest: './out/adapter_no_edge.js',
options: {
// These files will be skipped.
ignore: [
'./dist/edge/edge_shim.js'
],
browserifyOptions: {
// Exposes the shim in a global object to the browser.
standalone: 'adapter'
}
}
},
// Use this if you do not want Microsoft Edge shim to be included and
// do not want adapter to expose anything to the global scope.
adapterNoEdgeAndNoGlobalObject: {
src: ['./dist/adapter_core5.js'],
dest: './out/adapter_no_edge_no_global.js',
options: {
ignore: [
'./dist/edge/edge_shim.js'
]
}
}
},
eslint: {
options: {
configFile: '.eslintrc'
},
target: ['src/**/*.js', 'test/*.js', 'test/unit/*.js', 'test/e2e/*.js']
},
copy: {
build: {
dest: 'release/',
cwd: 'out',
src: '**',
nonull: true,
expand: true
}
},
shell: {
downloadBrowser : {
command: 'BROWSER=${BROWSER-chrome} BVER=${BVER-stable} ./node_modules/travis-multirunner/setup.sh'
},
},
});
grunt.loadNpmTasks('grunt-eslint');
grunt.loadNpmTasks('grunt-browserify');
grunt.loadNpmTasks('grunt-babel');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-shell');
grunt.registerTask('default', ['eslint', 'build']);
grunt.registerTask('lint', ['eslint']);
grunt.registerTask('build', ['babel', 'browserify']);
grunt.registerTask('copyForPublish', ['copy']);
grunt.registerTask('downloadBrowser', ['shell:downloadBrowser'])
};