@w5s/browserslist-config 1.0.0-alpha.1 → 1.0.0-alpha.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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +18 -6
package/README.md CHANGED
@@ -36,7 +36,7 @@ In the `package.json` for your project
36
36
  ## Supported Browsers
37
37
  <!-- AUTO-GENERATED-CONTENT:START (FILE:src=./BROWSER_LIST.md) -->
38
38
  <!-- The below content is automatically added from ./BROWSER_LIST.md -->
39
- _Generated Automatically at Wed, 14 Sep 2022 20:07:45 GMT_
39
+ _Generated Automatically at Wed, 21 Sep 2022 20:00:22 GMT_
40
40
 
41
41
  ### Desktop
42
42
 
@@ -52,7 +52,7 @@ _Generated Automatically at Wed, 14 Sep 2022 20:07:45 GMT_
52
52
 
53
53
  - Chrome for Android (105)
54
54
  - Firefox for Android (104)
55
- - UC Browser (12.12)
55
+ - UC Browser (13.4)
56
56
  - Safari for iOS (15.6, 15.5, 15.4, 15.2-15.3, 15.0-15.1, 14.5-14.8, 14.0-14.4, 12.2-12.5)
57
57
 
58
58
  [View more in browserlist.dev (usages, coverage)](https://browserslist.dev/?q=PjAuMiUsbm90IGRlYWQsbm90IG9wX21pbmkgYWxs)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@w5s/browserslist-config",
3
- "version": "1.0.0-alpha.1",
3
+ "version": "1.0.0-alpha.2",
4
4
  "description": "Browserslist support shared configuration",
5
5
  "keywords": [
6
6
  "browserslist",
@@ -12,7 +12,7 @@
12
12
  },
13
13
  "repository": {
14
14
  "type": "git",
15
- "url": "https://github.com/w5s/project-config.git",
15
+ "url": "git@github.com:w5s/project-config.git",
16
16
  "directory": "packages/browserslist-config"
17
17
  },
18
18
  "license": "MIT",
@@ -24,19 +24,31 @@
24
24
  "development.js"
25
25
  ],
26
26
  "scripts": {
27
- "build": "yarn docs",
27
+ "build": "concurrently \"npm:build:*\" \":\"",
28
+ "build:docs": "yarn docs",
29
+ "clean": "concurrently \"npm:clean:*\" \":\"",
28
30
  "docs": "node scripts/build-docs.mjs && md-magic --path '**/*.md' --ignore='node_modules'",
29
- "test": "jest"
31
+ "format": "concurrently \"npm:format:*\" \":\"",
32
+ "format:src": "eslint . --fix --ext=mjs,cjs,js,jsx,ts,tsx,json,jsonc,json5,yml,yaml",
33
+ "lint": "concurrently \"npm:lint:*\" \":\"",
34
+ "lint:src": "eslint . --ext=mjs,cjs,js,jsx,ts,tsx,json,jsonc,json5,yml,yaml",
35
+ "prepare": "concurrently \"npm:prepare:*\" \":\"",
36
+ "spellcheck": "cspell --no-progress '**'",
37
+ "test": "concurrently \"npm:test:*\" ",
38
+ "test:src": "jest"
30
39
  },
31
40
  "devDependencies": {
32
- "browserslist": "4.21.3",
41
+ "browserslist": "4.21.4",
33
42
  "lodash-es": "4.17.21"
34
43
  },
35
44
  "peerDependencies": {
36
45
  "browserslist": ">= 4.0"
37
46
  },
47
+ "engines": {
48
+ "node": ">=16.0.0"
49
+ },
38
50
  "publishConfig": {
39
51
  "access": "public"
40
52
  },
41
- "gitHead": "f7b1f6f80bec4103afdd1095b2ec8aeebaa5caf2"
53
+ "gitHead": "4223a68016e247672c7252281669c739a0329678"
42
54
  }