mirror of
https://github.com/tridactyl/tridactyl.git
synced 2026-09-10 07:16:33 -04:00
398 B
398 B
adding a new target
make a file here like
// unsupported-apis-mosaic.js
module.exports = require("./lib/unsupported-apis")("mosaic")
add a line to ../browser-targets.json
"mosaic": { "minimumVersion": "1.0.0" }
add a few lines to ../.eslintrc.js
"unsupported-apis-mosaic": [
"warn",
{ "minimumVersion": browserTargets.mosaic.minimumVersion }
],