@elliemae/browserslist-config-elliemae-latest-browsers 1.4.1 → 1.4.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/index.js ADDED
@@ -0,0 +1,8 @@
1
+ module.exports = {
2
+ development: [
3
+ 'Chrome >= 96, Edge >= 96, Safari >= 14.1, Firefox >= 95, iOS >= 14.5, ChromeAndroid >= 97',
4
+ ],
5
+ production: [
6
+ 'Chrome >= 96, Edge >= 96, Safari >= 14.1, Firefox >= 95, iOS >= 14.5, ChromeAndroid >= 97',
7
+ ],
8
+ };
File without changes
@@ -0,0 +1,7 @@
1
+ import config from '..';
2
+
3
+ describe('browserslistconfig', () => {
4
+ it('should return a list of browsers', () => {
5
+ expect(config.production).toBeDefined();
6
+ });
7
+ });
package/package.json CHANGED
@@ -1,20 +1,12 @@
1
1
  {
2
2
  "name": "@elliemae/browserslist-config-elliemae-latest-browsers",
3
- "version": "1.4.1",
3
+ "version": "1.4.2",
4
4
  "private": false,
5
5
  "description": "Browserslist Configuration with latest browsers only",
6
6
  "sideeffects": false,
7
- "main": "./dist/cjs/index.js",
8
- "module": "./dist/esm/index.js",
9
- "types": "./dist/types/index.d.ts",
10
- "exports": {
11
- ".": {
12
- "import": "./dist/esm/index.js",
13
- "require": "./dist/cjs/index.js"
14
- }
15
- },
7
+ "main": "./lib/index.js",
16
8
  "files": [
17
- "dist"
9
+ "lib"
18
10
  ],
19
11
  "publishConfig": {
20
12
  "access": "public"
@@ -30,8 +22,8 @@
30
22
  "author": "ICE MT",
31
23
  "license": "MIT",
32
24
  "scripts": {
33
- "build": "pui-cli pack -p -t node",
34
- "build:dev": "pui-cli pack -t node",
25
+ "build": "exit 0",
26
+ "build:dev": "exit 0",
35
27
  "gendoc": "pui-cli gendoc",
36
28
  "lint": "pui-cli lint",
37
29
  "lint:fix": "pui-cli lint --fix",
package/dist/cjs/index.js DELETED
@@ -1,30 +0,0 @@
1
- var __defProp = Object.defineProperty;
2
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
- var __getOwnPropNames = Object.getOwnPropertyNames;
4
- var __hasOwnProp = Object.prototype.hasOwnProperty;
5
- var __export = (target, all) => {
6
- for (var name in all)
7
- __defProp(target, name, { get: all[name], enumerable: true });
8
- };
9
- var __copyProps = (to, from, except, desc) => {
10
- if (from && typeof from === "object" || typeof from === "function") {
11
- for (let key of __getOwnPropNames(from))
12
- if (!__hasOwnProp.call(to, key) && key !== except)
13
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
14
- }
15
- return to;
16
- };
17
- var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
18
- var lib_exports = {};
19
- __export(lib_exports, {
20
- default: () => lib_default
21
- });
22
- module.exports = __toCommonJS(lib_exports);
23
- var lib_default = {
24
- development: [
25
- "Chrome >= 96, Edge >= 96, Safari >= 14.1, Firefox >= 95, iOS >= 14.5, ChromeAndroid >= 97"
26
- ],
27
- production: [
28
- "Chrome >= 96, Edge >= 96, Safari >= 14.1, Firefox >= 95, iOS >= 14.5, ChromeAndroid >= 97"
29
- ]
30
- };
@@ -1,4 +0,0 @@
1
- {
2
- "type": "commonjs",
3
- "sideEffects": false
4
- }
package/dist/esm/index.js DELETED
@@ -1,11 +0,0 @@
1
- var lib_default = {
2
- development: [
3
- "Chrome >= 96, Edge >= 96, Safari >= 14.1, Firefox >= 95, iOS >= 14.5, ChromeAndroid >= 97"
4
- ],
5
- production: [
6
- "Chrome >= 96, Edge >= 96, Safari >= 14.1, Firefox >= 95, iOS >= 14.5, ChromeAndroid >= 97"
7
- ]
8
- };
9
- export {
10
- lib_default as default
11
- };
@@ -1,15 +0,0 @@
1
- doctype html
2
- head
3
- meta(charset='UTF-8')
4
- meta(name='viewport' content='width=device-width, initial-scale=1.0')
5
- meta(http-equiv='X-UA-Compatible' content='ie=edge')
6
- title #{htmlWebpackPlugin.options.libraryName}
7
- p This library #{htmlWebpackPlugin.options.libraryName} exposes the following properties
8
- ul#libraryAttributes
9
- script(lang='javascript').
10
- window.onload = () => {
11
- const attribNode = document.getElementById('libraryAttributes');
12
- if (attribNode) {
13
- attribNode.innerHTML = Object.keys(window['#{htmlWebpackPlugin.options.libraryName}'] || {}).reduce((value, attribute) => value += `<li>${attribute}</li>`, '');
14
- }
15
-
@@ -1,4 +0,0 @@
1
- {
2
- "type": "module",
3
- "sideEffects": false
4
- }
@@ -1,5 +0,0 @@
1
- declare const _default: {
2
- development: string[];
3
- production: string[];
4
- };
5
- export default _default;
@@ -1 +0,0 @@
1
- export {};