Some checks failed
CI / go (push) Waiting to run
CI / docker (push) Waiting to run
CI / lint-go (push) Waiting to run
CI / lint-docs (push) Waiting to run
CI / check-paperclip (push) Waiting to run
Deploy static site / Deploy to GitHub Pages (push) Has been cancelled
Deploy static site / Deploy via Docker to hatch.surf (push) Has been cancelled
Resolved conflicts by taking GitHub versions for: - .dockerignore, .gitignore, Dockerfile, README.md, docker-compose.yml Kept deploy.sh updated to: - Pull from GitHub (primary source) - Push to Gitea (push-mirror) - Build from site/ directory (GitHub structure) Co-Authored-By: Paperclip <noreply@paperclip.ing>
49 lines
929 B
JavaScript
49 lines
929 B
JavaScript
const BROWSER_MAPPING = {
|
|
and_chr: 'chrome',
|
|
and_ff: 'firefox',
|
|
ie_mob: 'ie',
|
|
op_mob: 'opera',
|
|
and_qq: null,
|
|
and_uc: null,
|
|
baidu: null,
|
|
bb: null,
|
|
kaios: null,
|
|
op_mini: null,
|
|
};
|
|
|
|
function browserslistToTargets(browserslist) {
|
|
let targets = {};
|
|
for (let browser of browserslist) {
|
|
let [name, v] = browser.split(' ');
|
|
if (BROWSER_MAPPING[name] === null) {
|
|
continue;
|
|
}
|
|
|
|
let version = parseVersion(v);
|
|
if (version == null) {
|
|
continue;
|
|
}
|
|
|
|
if (targets[name] == null || version < targets[name]) {
|
|
targets[name] = version;
|
|
}
|
|
}
|
|
|
|
return targets;
|
|
}
|
|
|
|
function parseVersion(version) {
|
|
let [major, minor = 0, patch = 0] = version
|
|
.split('-')[0]
|
|
.split('.')
|
|
.map(v => parseInt(v, 10));
|
|
|
|
if (isNaN(major) || isNaN(minor) || isNaN(patch)) {
|
|
return null;
|
|
}
|
|
|
|
return (major << 16) | (minor << 8) | patch;
|
|
}
|
|
|
|
module.exports = browserslistToTargets;
|