1
0
mirror of synced 2024-11-22 04:56:08 +03:00
select2/Gruntfile.js

255 lines
5.5 KiB
JavaScript
Raw Normal View History

module.exports = function (grunt) {
// Full list of files that must be included by RequireJS
includes = [
'jquery.select2'
];
amdIncludes = [
'almond'
];
fullIncludes = [
'jquery',
'jquery.mousewheel',
'select2/compat/matcher',
'select2/compat/initSelection',
'select2/compat/query',
'select2/dropdown/attachContainer'
].concat(includes);
var i18nModules = [];
var i18nPaths = {};
var i18nFiles = grunt.file.expand({
cwd: 'src/js'
}, 'select2/i18n/*.js');
for (var i = 0; i < i18nFiles.length; i++) {
var file = i18nFiles[i];
var name = file.split('.')[0];
i18nModules.push({
name: name
});
i18nPaths[name] = '../../' + name;
}
grunt.initConfig({
clean: {
docs: ['docs/_site']
},
uglify: {
'dist': {
src: 'dist/js/select2.js',
dest: 'dist/js/select2.min.js'
},
'dist.full': {
src: 'dist/js/select2.full.js',
dest: 'dist/js/select2.full.min.js'
}
},
qunit: {
all: [
'tests/**/*.html'
]
},
'gh-pages': {
options: {
base: 'docs',
branch: 'master',
clone: 'node_modules/grunt-gh-pages/repo',
message: 'Updated docs with master',
2014-11-26 00:23:53 +03:00
push: true,
repo: 'git@github.com:select2/select2.github.io.git'
},
src: '**'
},
2014-11-04 03:09:38 +03:00
jekyll: {
options: {
src: 'docs',
dest: 'docs/_site'
},
build: {
d: null
},
serve: {
options: {
serve: true,
watch: true
}
}
},
2014-09-21 23:21:43 +04:00
jshint: {
options: {
jshintrc: true
},
code: {
2014-11-01 02:10:38 +03:00
src: ['src/js/**/*.js']
2014-09-21 23:21:43 +04:00
},
tests: {
2014-11-01 02:10:38 +03:00
src: ['tests/**/*.js']
2014-09-21 23:21:43 +04:00
}
},
sass: {
dist: {
options: {
2014-11-01 02:10:38 +03:00
outputStyle: 'compressed'
},
files: {
2014-11-01 02:10:38 +03:00
'dist/css/select2.min.css': [
'src/scss/core.scss',
'src/scss/theme/default/layout.css'
]
}
},
dev: {
options: {
2014-11-01 02:10:38 +03:00
outputStyle: 'nested'
},
files: {
2014-11-01 02:10:38 +03:00
'dist/css/select2.css': [
'src/scss/core.scss',
'src/scss/theme/default/layout.css'
]
}
}
},
symlink: {
docs: {
cwd: 'dist',
expand: true,
overwrite: false,
src: [
'*'
],
dest: 'docs/dist',
filter: 'isDirectory'
}
},
requirejs: {
2014-11-01 02:10:38 +03:00
'dist': {
options: {
2014-11-01 02:10:38 +03:00
baseUrl: 'src/js',
optimize: 'none',
name: 'select2/core',
out: 'dist/js/select2.js',
include: amdIncludes.concat(includes),
paths: {
2014-11-01 02:10:38 +03:00
almond: '../../vendor/almond-0.2.9',
jquery: 'jquery.shim'
},
wrap: grunt.file.readJSON('src/js/banner.json')
}
},
2014-11-01 02:10:38 +03:00
'dist.full': {
options: {
2014-11-01 02:10:38 +03:00
baseUrl: 'src/js',
optimize: 'none',
name: 'select2/core',
out: 'dist/js/select2.full.js',
include: amdIncludes.concat(fullIncludes),
paths: {
2014-11-01 02:10:38 +03:00
almond: '../../vendor/almond-0.2.9',
2015-01-22 22:49:39 +03:00
jquery: 'jquery.shim',
'jquery.mousewheel': '../../vendor/jquery.mousewheel'
},
wrap: grunt.file.readJSON('src/js/banner.json')
}
},
2014-11-01 02:10:38 +03:00
'amd': {
options: {
2014-11-01 02:10:38 +03:00
baseUrl: 'src/js',
optimize: 'none',
name: 'select2/core',
out: 'dist/js/select2.amd.js',
include: includes,
paths: {
2014-11-01 02:10:38 +03:00
jquery: 'empty:'
},
2015-01-22 22:49:39 +03:00
wrap: grunt.file.readJSON('src/js/banner.amd.json')
}
},
2014-11-01 02:10:38 +03:00
'amd.full': {
options: {
2014-11-01 02:10:38 +03:00
baseUrl: 'src/js',
optimize: 'none',
name: 'select2/core',
out: 'dist/js/select2.amd.full.js',
include: fullIncludes,
paths: {
jquery: 'empty:',
'jquery.mousewheel': '../../vendor/jquery.mousewheel'
},
2015-01-22 22:49:39 +03:00
wrap: grunt.file.readJSON('src/js/banner.amd.json')
}
},
'i18n': {
options: {
baseUrl: 'src/js/select2/i18n',
dir: 'dist/js/i18n',
paths: i18nPaths,
modules: i18nModules,
wrap: grunt.file.readJSON('src/js/banner.json')
}
}
},
watch: {
js: {
files: [
2014-11-01 02:10:38 +03:00
'src/js/select2/**/*.js',
'tests/**/*.js'
],
tasks: [
2014-11-01 02:10:38 +03:00
'compile',
'test',
2014-10-11 06:17:51 +04:00
'minify'
]
},
css: {
files: [
2014-11-01 02:10:38 +03:00
'src/scss/**/*.scss'
],
tasks: [
2014-11-01 02:10:38 +03:00
'compile',
2014-10-11 06:17:51 +04:00
'minify'
]
}
}
});
grunt.loadNpmTasks('grunt-contrib-clean');
2014-11-01 02:10:38 +03:00
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-qunit');
grunt.loadNpmTasks('grunt-contrib-requirejs');
grunt.loadNpmTasks('grunt-contrib-symlink');
2014-11-01 02:10:38 +03:00
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-gh-pages');
2014-11-04 03:09:38 +03:00
grunt.loadNpmTasks('grunt-jekyll');
2014-11-01 02:10:38 +03:00
grunt.loadNpmTasks('grunt-sass');
2014-11-01 02:10:38 +03:00
grunt.registerTask('default', ['compile', 'test', 'minify']);
grunt.registerTask('compile', ['requirejs', 'sass:dev']);
2014-11-01 02:10:38 +03:00
grunt.registerTask('minify', ['uglify', 'sass:dist']);
grunt.registerTask('test', ['qunit', 'jshint']);
2014-11-04 03:09:38 +03:00
grunt.registerTask('docs', ['symlink:docs', 'jekyll:serve']);
2014-11-04 03:09:38 +03:00
grunt.registerTask('docs-release', ['default', 'clean:docs', 'gh-pages']);
2014-11-01 02:10:38 +03:00
};