Caret/Gruntfile.js

80 lines
2.2 KiB
JavaScript
Raw Normal View History

2013-08-22 06:35:47 +00:00
module.exports = function(grunt) {
var exec = require("child_process").exec;
var path = require("path");
var fs = require("fs");
2013-08-22 06:35:47 +00:00
grunt.loadNpmTasks("grunt-contrib-less");
grunt.loadNpmTasks("grunt-contrib-watch");
grunt.loadNpmTasks("grunt-contrib-compress");
grunt.loadNpmTasks("grunt-contrib-copy");
2013-08-22 06:35:47 +00:00
grunt.initConfig({
less: {
all: {
files: {
"css/editor.css": "css/seed.less"
2013-08-22 06:35:47 +00:00
}
}
},
watch: {
css: {
files: ["css/*.less"],
tasks: ["less"]
},
options: {
spawn: false
}
},
compress: {
2013-09-10 16:19:14 +00:00
pack: {
options: {
archive: "build/caret.zip",
pretty: true
},
files: {
"/": ["config/**", "js/**", "css/*.css", "*.html", "manifest.json", "require.js", "background.js", "*.png"]
}
}
},
copy: {
unpacked: {
dest: "build/unpacked/",
src: ["config/**", "js/**", "css/*.css", "*.html", "manifest.json", "require.js", "background.js", "*.png"]
}
2013-08-22 06:35:47 +00:00
}
});
grunt.registerTask("default", ["less", "watch"]);
grunt.registerTask("package", ["less:all", "compress:pack", "copy:unpacked", "crx"]);
grunt.registerTask("crx", "Makes a new CRX package", function() {
var manifest = JSON.parse(fs.readFileSync("./build/unpacked/manifest.json"));
manifest.icons["128"] = "icon-128-inverted.png";
fs.writeFileSync("./build/unpacked/manifest.json", JSON.stringify(manifest, null, 2));
//perform the Chrome packaging
var c = this.async();
var here = fs.realpathSync(__dirname);
var chrome = {
win32: '"' + (process.env["ProgramFiles(x86)"] || process.env.ProgramFiles) + "\\Google\\Chrome\\Application\\chrome.exe" + '"',
2013-09-13 16:14:46 +00:00
linux: "/opt/google/chrome/chrome",
osx: "Beats me."
}
var cmd = [ chrome[process.platform] ];
cmd.push("--pack-extension=" + path.join(here, "build/unpacked"));
cmd.push("--pack-extension-key=" + path.join(here, "../Caret.pem"));
exec(cmd.join(" "),function(err, out, stderr) {
if (err) {
console.log(stderr);
}
fs.renameSync("./build/unpacked.crx", "./build/Caret.crx");
exec("rm -rf ./build/unpacked");
c();
});
});
2013-08-22 06:35:47 +00:00
2013-09-11 14:59:13 +00:00
};