@elliemae/browserslist-config-elliemae-latest-browsers 1.3.0 → 1.4.0
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.ts +8 -0
- package/package.json +16 -14
- package/lib/index.js +0 -8
package/lib/index.ts
ADDED
package/package.json
CHANGED
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/browserslist-config-elliemae-latest-browsers",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.4.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Browserslist Configuration with latest browsers only",
|
|
6
6
|
"sideeffects": false,
|
|
7
|
-
"main": "./
|
|
7
|
+
"main": "./dist/cjs/index.js",
|
|
8
|
+
"module": "./dist/esm/index.js",
|
|
9
|
+
"types": "./dist/types/index.d.ts",
|
|
8
10
|
"exports": {
|
|
9
11
|
".": {
|
|
10
|
-
"
|
|
12
|
+
"import": "./dist/esm/index.js",
|
|
13
|
+
"require": "./dist/cjs/index.js"
|
|
11
14
|
}
|
|
12
15
|
},
|
|
13
16
|
"files": [
|
|
@@ -21,30 +24,29 @@
|
|
|
21
24
|
"url": "https://git.elliemae.io/platform-ui/pui-browserslist-config-latest-browsers.git"
|
|
22
25
|
},
|
|
23
26
|
"engines": {
|
|
24
|
-
"
|
|
25
|
-
"node": ">=
|
|
27
|
+
"pnpm": ">=6",
|
|
28
|
+
"node": ">=16"
|
|
26
29
|
},
|
|
27
|
-
"author": "
|
|
30
|
+
"author": "ICE MT",
|
|
28
31
|
"license": "MIT",
|
|
29
32
|
"scripts": {
|
|
30
|
-
"build": "
|
|
31
|
-
"build:dev": "
|
|
33
|
+
"build": "pui-cli pack -p -t node",
|
|
34
|
+
"build:dev": "pui-cli pack -t node",
|
|
32
35
|
"gendoc": "pui-cli gendoc",
|
|
33
36
|
"lint": "pui-cli lint",
|
|
34
37
|
"lint:fix": "pui-cli lint --fix",
|
|
35
|
-
"lint:staged": "lint-staged",
|
|
36
38
|
"release": "semantic-release",
|
|
37
39
|
"start:server": "serve ./dist/public -l 3000",
|
|
38
40
|
"storybook": "exit 0",
|
|
39
41
|
"storybook:build": "exit 0",
|
|
40
42
|
"storybook:prod": "exit 0",
|
|
41
|
-
"setup": "rimraf
|
|
42
|
-
"test": "pui-cli test",
|
|
43
|
+
"setup": "rimraf node_modules && rimraf pnpm-lock.yaml && pnpm i",
|
|
44
|
+
"test": "pui-cli test -p",
|
|
43
45
|
"test:fix": "pui-cli test -f",
|
|
44
46
|
"test:watch": "pui-cli test -w",
|
|
45
47
|
"test:staged": "jest --coverage --passWithNoTests --bail --findRelatedTests",
|
|
46
48
|
"upgrade": "ncu -u && npm run setup",
|
|
47
|
-
"prepare": "husky install"
|
|
49
|
+
"prepare": "[ -n \"$CI\" ] || husky install"
|
|
48
50
|
},
|
|
49
51
|
"jestSonar": {
|
|
50
52
|
"sonar56x": true,
|
|
@@ -53,8 +55,8 @@
|
|
|
53
55
|
"indent": 4
|
|
54
56
|
},
|
|
55
57
|
"devDependencies": {
|
|
56
|
-
"@elliemae/pui-cli": "~
|
|
58
|
+
"@elliemae/pui-cli": "~6.14.0",
|
|
57
59
|
"redux-saga": "1.1.3",
|
|
58
|
-
"styled-components": "~5.3.
|
|
60
|
+
"styled-components": "~5.3.5"
|
|
59
61
|
}
|
|
60
62
|
}
|
package/lib/index.js
DELETED