generated from dellevin/template
1
This commit is contained in:
2
node_modules/baseline-browser-mapping/dist/cli.cjs
generated
vendored
Normal file
2
node_modules/baseline-browser-mapping/dist/cli.cjs
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
#!/usr/bin/env node
|
||||
"use strict";const{getCompatibleVersions:e}=require("./index.cjs"),a=process.argv.slice(2),s={};for(let e=0;e<a.length;e++){const r=a[e];r&&("-h"===r||"--help"===r?s.help=!0:"--include-downstream-browsers"===r?s["include-downstream-browsers"]=!0:"--list-all-compatible-versions"===r?s["list-all-compatible-versions"]=!0:"--include-kaios"===r?s["include-kaios"]=!0:"--suppress-warnings"===r?s["suppress-warnings"]=!0:r.startsWith("--target-year=")?s["target-year"]=r.substring(14):"--target-year"===r?s["target-year"]=a[++e]:r.startsWith("--widely-available-on-date=")?s["widely-available-on-date"]=r.substring(27):"--widely-available-on-date"===r?s["widely-available-on-date"]=a[++e]:r.startsWith("--override-last-updated=")?s["override-last-updated"]=r.substring(24):"--override-last-updated"===r?s["override-last-updated"]=a[++e]:(console.error(`Unknown argument: ${r}`),process.exit(1)))}s.help&&(console.log("\nGet Baseline Widely available browser versions or Baseline year browser versions.\n\nUsage: baseline-browser-mapping [options]\n\nOptions:\n --target-year Pass a year between 2015 and the current year to get browser versions compatible \n with all Newly Available features as of the end of the year specified.\n --widely-available-on-date Pass a date in the format 'YYYY-MM-DD' to get versions compatible with Widely \n available on the specified date.\n --include-downstream-browsers Whether to include browsers that use the same engines as a core Baseline browser.\n --include-kaios Whether to include KaiOS in downstream browsers. Requires --include-downstream-browsers.\n --list-all-compatible-versions Whether to include only the minimum compatible browser versions or all compatible versions.\n --suppress-warnings Supress potential warnings about data staleness when using a very recent feature cut off date.\n --override-last-updated Override the last updated date for the baseline data for debugging purposes.\n -h, --help Show help\n\nExamples:\n npx baseline-browser-mapping --target-year 2020\n npx baseline-browser-mapping --widely-available-on-date 2023-04-05\n npx baseline-browser-mapping --include-downstream-browsers\n npx baseline-browser-mapping --list-all-compatible-versions\n".trim()),process.exit(0)),console.log(e({targetYear:s["target-year"]?Number.parseInt(s["target-year"]):void 0,widelyAvailableOnDate:s["widely-available-on-date"],includeDownstreamBrowsers:s["include-downstream-browsers"],listAllCompatibleVersions:s["list-all-compatible-versions"],includeKaiOS:s["include-kaios"],suppressWarnings:s["suppress-warnings"],overrideLastUpdated:s["override-last-updated"]?Number.parseInt(s["override-last-updated"]):void 0}));
|
||||
1
node_modules/baseline-browser-mapping/dist/index.cjs
generated
vendored
Normal file
1
node_modules/baseline-browser-mapping/dist/index.cjs
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
104
node_modules/baseline-browser-mapping/dist/index.d.ts
generated
vendored
Normal file
104
node_modules/baseline-browser-mapping/dist/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,104 @@
|
||||
export declare function _resetHasWarned(): void;
|
||||
type BrowserVersion = {
|
||||
browser: string;
|
||||
version: string;
|
||||
release_date?: string;
|
||||
engine?: string;
|
||||
engine_version?: string;
|
||||
};
|
||||
interface AllBrowsersBrowserVersion extends BrowserVersion {
|
||||
year: number | string;
|
||||
supports?: string;
|
||||
wa_compatible?: boolean;
|
||||
}
|
||||
type NestedBrowserVersions = {
|
||||
[browser: string]: {
|
||||
[version: string]: AllBrowsersBrowserVersion;
|
||||
};
|
||||
};
|
||||
type Options = {
|
||||
/**
|
||||
* Whether to include only the minimum compatible browser versions or all compatible versions.
|
||||
* Defaults to `false`.
|
||||
*/
|
||||
listAllCompatibleVersions?: boolean;
|
||||
/**
|
||||
* Whether to include browsers that use the same engines as a core Baseline browser.
|
||||
* Defaults to `false`.
|
||||
*/
|
||||
includeDownstreamBrowsers?: boolean;
|
||||
/**
|
||||
* Pass a date in the format 'YYYY-MM-DD' to get versions compatible with Widely available on the specified date.
|
||||
* If left undefined and a `targetYear` is not passed, defaults to Widely available as of the current date.
|
||||
* > NOTE: cannot be used with `targetYear`.
|
||||
*/
|
||||
widelyAvailableOnDate?: string | number;
|
||||
/**
|
||||
* Pass a year between 2015 and the current year to get browser versions compatible with all
|
||||
* Newly Available features as of the end of the year specified.
|
||||
* > NOTE: cannot be used with `widelyAvailableOnDate`.
|
||||
*/
|
||||
targetYear?: number;
|
||||
/**
|
||||
* Pass a boolean that determines whether KaiOS is included in browser mappings. KaiOS implements
|
||||
* the Gecko engine used in Firefox. However, KaiOS also has a different interaction paradigm to
|
||||
* other browsers and requires extra consideration beyond simple feature compatibility to provide
|
||||
* an optimal user experience. Defaults to `false`.
|
||||
*/
|
||||
includeKaiOS?: boolean;
|
||||
overrideLastUpdated?: number;
|
||||
/**
|
||||
* Pass a boolean to suppress the warning about stale data.
|
||||
* Defaults to `false`.
|
||||
*/
|
||||
suppressWarnings?: boolean;
|
||||
};
|
||||
/**
|
||||
* Returns browser versions compatible with specified Baseline targets.
|
||||
* Defaults to returning the minimum versions of the core browser set that support Baseline Widely available.
|
||||
* Takes an optional configuration `Object` with four optional properties:
|
||||
* - `listAllCompatibleVersions`: `false` (default) or `true`
|
||||
* - `includeDownstreamBrowsers`: `false` (default) or `true`
|
||||
* - `widelyAvailableOnDate`: date in format `YYYY-MM-DD`
|
||||
* - `targetYear`: year in format `YYYY`
|
||||
* - `supressWarnings`: `false` (default) or `true`
|
||||
*/
|
||||
export declare function getCompatibleVersions(userOptions?: Options): BrowserVersion[];
|
||||
type AllVersionsOptions = {
|
||||
/**
|
||||
* Whether to return the output as a JavaScript `Array` (`"array"`), `Object` (`"object"`) or a CSV string (`"csv"`).
|
||||
* Defaults to `"array"`.
|
||||
*/
|
||||
outputFormat?: string;
|
||||
/**
|
||||
* Whether to include browsers that use the same engines as a core Baseline browser.
|
||||
* Defaults to `false`.
|
||||
*/
|
||||
includeDownstreamBrowsers?: boolean;
|
||||
/**
|
||||
* Whether to use the new "supports" property in place of "wa_compatible"
|
||||
* Defaults to `false`
|
||||
*/
|
||||
useSupports?: boolean;
|
||||
/**
|
||||
* Whether to include KaiOS in the output. KaiOS implements the Gecko engine used in Firefox.
|
||||
* However, KaiOS also has a different interaction paradigm to other browsers and requires extra
|
||||
* consideration beyond simple feature compatibility to provide an optimal user experience.
|
||||
*/
|
||||
includeKaiOS?: boolean;
|
||||
/**
|
||||
* Pass a boolean to suppress the warning about old data.
|
||||
* Defaults to `false`.
|
||||
*/
|
||||
suppressWarnings?: boolean;
|
||||
};
|
||||
/**
|
||||
* Returns all browser versions known to this module with their level of Baseline support as a JavaScript `Array` (`"array"`), `Object` (`"object"`) or a CSV string (`"csv"`).
|
||||
* Takes an optional configuration `Object` with three optional properties:
|
||||
* - `includeDownstreamBrowsers`: `false` (default) or `true`
|
||||
* - `outputFormat`: `"array"` (default), `"object"` or `"csv"`
|
||||
* - `useSupports`: `false` (default) or `true`, replaces `wa_compatible` property with optional `supports` property which returns `widely` or `newly` available when present.
|
||||
* - `supressWarnings`: `false` (default) or `true`
|
||||
*/
|
||||
export declare function getAllVersions(userOptions?: AllVersionsOptions): AllBrowsersBrowserVersion[] | NestedBrowserVersions | string;
|
||||
export {};
|
||||
1
node_modules/baseline-browser-mapping/dist/index.js
generated
vendored
Normal file
1
node_modules/baseline-browser-mapping/dist/index.js
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user