@w5s/browserslist-config 1.0.0-alpha.10 → 1.0.0-alpha.12

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@w5s/browserslist-config",
3
- "version": "1.0.0-alpha.10",
3
+ "version": "1.0.0-alpha.12",
4
4
  "description": "Browserslist support shared configuration",
5
5
  "keywords": [
6
6
  "browserslist",
@@ -36,7 +36,7 @@
36
36
  "build": "concurrently \"npm:build:*\" \":\"",
37
37
  "build:tsc": "tsc -b tsconfig.build.json;yarn docs",
38
38
  "clean": "concurrently \"npm:clean:*\" \":\"",
39
- "clean:src": "rm -rf lib/*",
39
+ "clean:tsc": "rm -rf lib",
40
40
  "docs": "node scripts/build-docs.mjs && node ../../markdown.mjs",
41
41
  "format": "concurrently \"npm:format:*\" \":\"",
42
42
  "format:src": "eslint . --fix --ext=mjs,cjs,js,jsx,ts,tsx,json,jsonc,json5,yml,yaml",
@@ -62,7 +62,7 @@
62
62
  ]
63
63
  },
64
64
  "devDependencies": {
65
- "@jest/globals": "29.4.1",
65
+ "@jest/globals": "29.4.3",
66
66
  "browserslist": "4.21.5",
67
67
  "lodash-es": "4.17.21"
68
68
  },
@@ -80,5 +80,5 @@
80
80
  "publishConfig": {
81
81
  "access": "public"
82
82
  },
83
- "gitHead": "cdb08978935c78ac2303b9a00f42f791e6361306"
83
+ "gitHead": "ace7dcdd3244c34b38de66da80347ca16e59838d"
84
84
  }
package/lib/default.d.ts DELETED
@@ -1,2 +0,0 @@
1
- declare const config: string[];
2
- export = config;
package/lib/default.js DELETED
@@ -1,8 +0,0 @@
1
- "use strict";
2
- const config = [
3
- // From create-react-app
4
- '>0.2%',
5
- 'not dead',
6
- 'not op_mini all',
7
- ];
8
- module.exports = config;
@@ -1,2 +0,0 @@
1
- declare const config: string[];
2
- export = config;
@@ -1,4 +0,0 @@
1
- "use strict";
2
- // Latest browsers (Often used for development only)
3
- const config = ['last 1 chrome version', 'last 1 firefox version', 'last 1 safari version'];
4
- module.exports = config;