cartodb-4.42/lib/assets/javascripts/cdb/grunt/tasks/concat.js

193 lines
5.9 KiB
JavaScript
Raw Normal View History

2024-04-06 13:25:13 +08:00
/**
* Concat grunt task for CartoDB.js
*
*/
module.exports = {
task: function(grunt, config) {
// Get src and vendor js files
require('../../src/cartodb');
cdb.files.splice(0, 0, 'cartodb.js');
var files = cdb.files;
var vendor_files = [];
var cdb_files = [];
for(var i = 0; i < files.length; ++i) {
var f = files[i];
if(f.indexOf('vendor') === -1) {
cdb_files.push('./src/' + f);
} else {
vendor_files.push('./vendor/' + f.split('/')[2]);
}
}
return {
standard: {
options: {
process: function(src, filepath) {
// DAMM!
// It is possible to use neither underscore nor
// grunt templating, an ILLEGAL token error appears
// - Solution, replacing text, directly, rude.
return src
.replace(/<%= version %>/g, grunt.config.get('bump.version'))
.replace(/<%= sha %>/g, grunt.config.get('gitinfo').local.branch.current.SHA)
.replace(/<%= load_jquery %>/g, true)
}
},
files: {
// Standard library
'<%= config.dist %>/cartodb.uncompressed.js':
['grunt/templates/wrapper_header.js']
.concat(vendor_files)
.concat(['grunt/templates/wrapper_middle.js'])
.concat(cdb_files)
.concat(['grunt/templates/wrapper_footer.js'])
}
},
core: {
options: {
banner: grunt.file.read('./grunt/templates/version_header.js') + "" + grunt.file.read('./grunt/templates/core_header.js') + "",
footer: grunt.file.read('./grunt/templates/core_footer.js')
},
files: {
// Core library
'<%= config.dist %>/cartodb.core.uncompressed.js': [
'vendor/underscore-min.js',
'grunt/templates/underscore_no_conflict.js',
'vendor/mustache.js',
'vendor/reqwest.min.js',
'src/cartodb.js',
'src/api/core_lib.js',
'src/core/profiler.js',
'src/core/util.js',
'src/api/sql.js',
'src/geo/layer_definition.js',
'src/geo/sublayer.js',
'src/core/loader.js',
'src/vis/image.js',
'src/api/tiles.js'
]
}
},
nojquery: {
options: {
process: function(src, filepath) {
// DAMM!
// It is possible to use neither underscore nor
// grunt templating, an ILLEGAL token error appears
// - Solution, replacing text, directly, rude.
return src
.replace(/<%= version %>/g, grunt.config.get('bump.version'))
.replace(/<%= sha %>/g, grunt.config.get('gitinfo').local.branch.current.SHA)
.replace(/<%= load_jquery %>/g, true)
}
},
files: {
// Library without jQuery library
'<%= config.dist %>/_cartodb_nojquery.js':
['grunt/templates/wrapper_header.js']
.concat(vendor_files)
.concat([
'!./vendor/jquery.min.js',
'grunt/templates/wrapper_middle.js'
])
.concat(cdb_files)
.concat(['grunt/templates/wrapper_footer.js'])
}
},
noleaflet: {
options: {
process: function(src, filepath) {
// DAMM!
// It is possible to use neither underscore nor
// grunt templating, an ILLEGAL token error appears
// - Solution, replacing text, directly, rude.
return src
.replace(/<%= version %>/g, grunt.config.get('bump.version'))
.replace(/<%= sha %>/g, grunt.config.get('gitinfo').local.branch.current.SHA)
.replace(/<%= load_jquery %>/g, true)
}
},
files: {
// Library without Leaflet library
'<%= config.dist %>/_cartodb_noleaflet.js':
['grunt/templates/wrapper_header.js']
.concat(vendor_files)
.concat([
'!./vendor/leaflet.js',
'grunt/templates/wrapper_middle.js'
])
.concat(cdb_files)
.concat(['grunt/templates/wrapper_footer.js'])
}
},
torque: {
options: {
banner: grunt.file.read('./grunt/templates/version_header.js'),
footer: grunt.file.read('./grunt/templates/torque_footer.js')
},
files: {
// Torque library
'<%= config.dist %>/cartodb.mod.torque.uncompressed.js': [
'./grunt/templates/torque_header.js',
'vendor/mod/carto.js',
'vendor/mod/torque.uncompressed.js',
'src/geo/gmaps/torque.js',
'src/geo/leaflet/torque.js',
'src/geo/ui/time_slider.js',
'vendor/mod/jquery-ui/jquery.ui.core.js',
'vendor/mod/jquery-ui/jquery.ui.widget.js',
'vendor/mod/jquery-ui/jquery.ui.mouse.js',
'vendor/mod/jquery-ui/jquery.ui.slider.js'
]
}
},
odyssey: {
options: {
banner: grunt.file.read('./grunt/templates/version_header.js'),
footer: grunt.file.read('./grunt/templates/odyssey_footer.js')
},
files: {
// Odyssey library
'<%= config.dist %>/cartodb.mod.odyssey.uncompressed.js': [
'vendor/mod/odyssey.js'
]
}
},
themes: {
options: {},
files: {
// CartoDB.js CSSs (themes?)
'<%= config.dist %>/themes/css/cartodb.css': [
'themes/css/infowindow/*.css',
'themes/css/map/*.css',
'themes/css/tooltip/*.css',
'!themes/css/cartodb.css'
],
'<%= config.dist %>/themes/css/cartodb.ie.css': [
'themes/css/ie/*.css',
'!themes/css/cartodb.ie.css'
]
}
}
}
}
}