add a test for the transition suppressor rule
This commit is contained in:
parent
4ae2c67033
commit
ff63b84489
|
@ -28,11 +28,11 @@
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"lint": "eslint \"**/*.js\" --cache",
|
"lint": "eslint \"**/*.js\" --cache",
|
||||||
"test": "npm run lint",
|
"test": "node tools/test.js && npm run lint",
|
||||||
"update-locales": "tx pull --all && node tools/fix-transifex.js",
|
"update-locales": "tx pull --all && node tools/fix-transifex.js",
|
||||||
"update-transifex": "tx push -s",
|
"update-transifex": "tx push -s",
|
||||||
"build-vendor": "node tools/build-vendor",
|
"build-vendor": "node tools/build-vendor",
|
||||||
"zip": "node tools/zip.js",
|
"zip": "npm test && node tools/zip.js",
|
||||||
"start": "web-ext run",
|
"start": "web-ext run",
|
||||||
"start-chrome": "web-ext run -t chromium",
|
"start-chrome": "web-ext run -t chromium",
|
||||||
"preversion": "npm test",
|
"preversion": "npm test",
|
||||||
|
|
16
tools/test.js
Normal file
16
tools/test.js
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
const fs = require('fs');
|
||||||
|
|
||||||
|
testGlobalCss();
|
||||||
|
|
||||||
|
function testGlobalCss() {
|
||||||
|
const css = fs.readFileSync('global.css', {encoding: 'utf8'});
|
||||||
|
const ERR = 'global.css: the first rule must be the transition suppressor';
|
||||||
|
const RX_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);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user