stylus/tools/test.js

17 lines
490 B
JavaScript
Raw Normal View History

'use strict';
const fs = require('fs');
testGlobalCss();
function testGlobalCss() {
const css = fs.readFileSync('global.css', {encoding: 'utf8'});
const ERR = 'global.css: missing the transition suppressor rule';
2021-04-20 17:27:07 +00:00
const RX_SUPPRESSOR = /[^{}]+#\\1\s?transition-suppressor[^{}]+{\s*transition:\s*none\s*!\s*important/i;
const RX_COMMENT = /\/\*([^*]|\*(?!\/))*(\*\/|$)/g;
if (!RX_SUPPRESSOR.test(css.replace(RX_COMMENT, ''))) {
console.error(ERR);
process.exit(1);
}
}