* split, regroup, and async'ify files
* consistent window scrolling in scrollToEditor and jumpToPos
* rework waitForSelector and collapsible <details>
* parserlib: fast section extraction, tweaks and speedups
* csslint: "simple-not" rule
* csslint: enable and fix "selector-newline" rule
* blank paint frame workaround for new Chrome
* extract stuff from edit.js and load on demand
* simplify regexpTester::isShown
* move MozDocMapper to sections-util.js
* extract fitSelectBox()
* initialize router earlier
* use helpPopup.close()
* fix autofocus in popups, follow-up to 5bb1b5ef
* clone objects in prefs.get() + cosmetics
* reuse getAll result for INC
54 lines
1.1 KiB
JavaScript
54 lines
1.1 KiB
JavaScript
#!/usr/bin/env node
|
|
'use strict';
|
|
|
|
const fs = require('fs');
|
|
const archiver = require('archiver');
|
|
|
|
function createZip() {
|
|
const fileName = 'stylus.zip';
|
|
const ignore = [
|
|
'.*', // dot files/folders (glob, not regexp)
|
|
'node_modules/**',
|
|
'tools/**',
|
|
'package.json',
|
|
'package-lock.json',
|
|
'yarn.lock',
|
|
'*.zip',
|
|
'*.map',
|
|
];
|
|
|
|
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);
|
|
archive.glob('**', {ignore});
|
|
archive.finalize();
|
|
});
|
|
}
|
|
|
|
(async () => {
|
|
try {
|
|
await createZip();
|
|
console.log('\x1b[32m%s\x1b[0m', 'Stylus zip complete');
|
|
} catch (err) {
|
|
console.error(err);
|
|
process.exit(1);
|
|
}
|
|
})();
|