mirror of
https://github.com/openseadragon/openseadragon.git
synced 2024-11-21 20:56:09 +03:00
168 lines
5.1 KiB
JavaScript
168 lines
5.1 KiB
JavaScript
module.exports = function(grunt) {
|
|
|
|
grunt.loadNpmTasks("grunt-contrib-compress");
|
|
grunt.loadNpmTasks("grunt-contrib-concat");
|
|
grunt.loadNpmTasks("grunt-contrib-jshint");
|
|
grunt.loadNpmTasks("grunt-contrib-uglify");
|
|
grunt.loadNpmTasks("grunt-contrib-qunit");
|
|
grunt.loadNpmTasks("grunt-contrib-connect");
|
|
grunt.loadNpmTasks("grunt-contrib-watch");
|
|
grunt.loadNpmTasks("grunt-contrib-clean");
|
|
|
|
var distribution = "build/openseadragon/openseadragon.js",
|
|
minified = "build/openseadragon/openseadragon.min.js",
|
|
sources = [
|
|
"src/openseadragon.js",
|
|
"src/eventhandler.js",
|
|
"src/mousetracker.js",
|
|
"src/control.js",
|
|
"src/controldock.js",
|
|
"src/viewer.js",
|
|
"src/navigator.js",
|
|
"src/strings.js",
|
|
"src/point.js",
|
|
//"src/profiler.js",
|
|
"src/tilesource.js",
|
|
"src/dzitilesource.js",
|
|
"src/iiiftilesource.js",
|
|
"src/osmtilesource.js",
|
|
"src/tmstilesource.js",
|
|
"src/legacytilesource.js",
|
|
"src/tilesourcecollection.js",
|
|
"src/button.js",
|
|
"src/buttongroup.js",
|
|
"src/rectangle.js",
|
|
"src/referencestrip.js",
|
|
"src/displayrectangle.js",
|
|
"src/spring.js",
|
|
"src/tile.js",
|
|
"src/overlay.js",
|
|
"src/drawer.js",
|
|
"src/viewport.js"
|
|
];
|
|
|
|
// Project configuration.
|
|
grunt.initConfig({
|
|
pkg: grunt.file.readJSON("package.json"),
|
|
clean: {
|
|
build: ["build"],
|
|
release: {
|
|
src: [
|
|
"../site-build/openseadragon",
|
|
"../site-build/openseadragon.zip",
|
|
"../site-build/openseadragon.tar"
|
|
],
|
|
options: {
|
|
force: true
|
|
}
|
|
}
|
|
},
|
|
concat: {
|
|
options: {
|
|
banner: "/**\n * @version <%= pkg.name %> <%= pkg.version %>\n */\n\n"
|
|
},
|
|
dist: {
|
|
src: [ "<banner>" ].concat(sources),
|
|
dest: distribution
|
|
}
|
|
},
|
|
uglify: {
|
|
openseadragon: {
|
|
src: [ distribution ],
|
|
dest: minified
|
|
}
|
|
},
|
|
compress: {
|
|
zip: {
|
|
options: {
|
|
archive: "build/openseadragon.zip"
|
|
},
|
|
files: [
|
|
{ expand: true, cwd: "build/", src: ["openseadragon/**"] }
|
|
]
|
|
},
|
|
tar: {
|
|
options: {
|
|
archive: "build/openseadragon.tar"
|
|
},
|
|
files: [
|
|
{ expand: true, cwd: "build/", src: [ "openseadragon/**" ] }
|
|
]
|
|
}
|
|
},
|
|
qunit: {
|
|
all: {
|
|
options: {
|
|
urls: [ "http://localhost:8000/test/test.html" ]
|
|
}
|
|
}
|
|
},
|
|
connect: {
|
|
server: {
|
|
options: {
|
|
port: 8000,
|
|
base: "."
|
|
}
|
|
}
|
|
},
|
|
watch: {
|
|
files: [ "grunt.js", "src/*.js" ],
|
|
tasks: "build"
|
|
},
|
|
jshint: {
|
|
options: {
|
|
browser: true,
|
|
eqeqeq: false,
|
|
loopfunc: false,
|
|
globals: {
|
|
OpenSeadragon: true
|
|
}
|
|
},
|
|
beforeconcat: sources,
|
|
afterconcat: [ distribution ]
|
|
}
|
|
});
|
|
|
|
// Copy:build task.
|
|
// Copies the image files into the appropriate location in the build folder.
|
|
grunt.registerTask("copy:build", function() {
|
|
grunt.file.recurse("images", function(abspath, rootdir, subdir, filename) {
|
|
grunt.file.copy(abspath, "build/openseadragon/images/" + (subdir || "") + filename);
|
|
});
|
|
});
|
|
|
|
// Copy:release task.
|
|
// Copies the contents of the build folder into ../site-build.
|
|
grunt.registerTask("copy:release", function() {
|
|
grunt.file.recurse("build", function(abspath, rootdir, subdir, filename) {
|
|
var dest = "../site-build/"
|
|
+ (subdir ? subdir + "/" : "")
|
|
+ filename;
|
|
|
|
grunt.file.copy(abspath, dest);
|
|
});
|
|
});
|
|
|
|
// Build task.
|
|
// Cleans out the build folder and builds the code and images into it, checking lint.
|
|
grunt.registerTask("build", [
|
|
"clean:build", "jshint:beforeconcat", "concat", "jshint:afterconcat", "uglify", "copy:build"
|
|
]);
|
|
|
|
// Test task.
|
|
// Builds and runs unit tests.
|
|
grunt.registerTask("test", ["build", "connect", "qunit"]);
|
|
|
|
// Package task.
|
|
// Builds and creates the .zip and .tar files.
|
|
grunt.registerTask("package", ["build", "compress"]);
|
|
|
|
// Publish task.
|
|
// Cleans the built files out of ../site-build and copies newly built ones over.
|
|
grunt.registerTask("publish", ["package", "clean:release", "copy:release"]);
|
|
|
|
// Default task.
|
|
// Does a normal build.
|
|
grunt.registerTask("default", ["build"]);
|
|
};
|