60 lines
1.2 KiB
JavaScript
60 lines
1.2 KiB
JavaScript
#!/usr/bin/env node
|
|
'use strict';
|
|
|
|
const fs = require('fs');
|
|
const archiver = require('archiver');
|
|
|
|
function createZip() {
|
|
const fileName = 'stylus.zip';
|
|
const includes = [
|
|
'_locales/*',
|
|
'background/*',
|
|
'content/*',
|
|
'edit/*',
|
|
'images/*',
|
|
'install-usercss/*',
|
|
'js/*',
|
|
'manage/*',
|
|
'msgbox/*',
|
|
'options/*',
|
|
'popup/*',
|
|
'vendor/*',
|
|
'vendor-overwrites/*',
|
|
'*.html',
|
|
'*.css',
|
|
'manifest.json',
|
|
'LICENSE',
|
|
'README.md'
|
|
];
|
|
|
|
const file = fs.createWriteStream(fileName);
|
|
const archive = archiver('zip');
|
|
return new Promise((resolve, reject) => {
|
|
archive.on('finish', () => {
|
|
resolve();
|
|
});
|
|
archive.on('warning', err => {
|
|
if (err.code === 'ENOENT') {
|
|
console.log('\x1b[33m%s\x1b[0m', 'Warning', err.message);
|
|
} else {
|
|
reject();
|
|
throw err;
|
|
}
|
|
});
|
|
archive.on('error', err => {
|
|
reject();
|
|
throw err;
|
|
});
|
|
|
|
archive.pipe(file);
|
|
includes.forEach(file => archive.glob(file));
|
|
archive.finalize();
|
|
});
|
|
}
|
|
|
|
createZip()
|
|
.then(() => console.log('\x1b[32m%s\x1b[0m', 'Stylus zip complete'))
|
|
.catch(err => {
|
|
throw err;
|
|
});
|