@browser-compat/cli 0.1.0 → 0.1.1
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/dist/index.js +1 -1
- package/package.json +13 -4
package/dist/index.js
CHANGED
|
@@ -5,7 +5,7 @@ import { mapCapabilities, toManifestCapabilities } from "@browser-compat/capabil
|
|
|
5
5
|
import { compareManifestWithCurrentTargets, createCompatManifest, validateCompatManifest, } from "@browser-compat/core";
|
|
6
6
|
import { scanCompatCss } from "@browser-compat/postcss";
|
|
7
7
|
import { BrowserslistConfigError, resolveBrowserslistConfig } from "./projectConfig.js";
|
|
8
|
-
const CLI_PACKAGE_VERSION = "0.1.
|
|
8
|
+
const CLI_PACKAGE_VERSION = "0.1.1";
|
|
9
9
|
async function main(argv) {
|
|
10
10
|
const args = parseArgs(argv);
|
|
11
11
|
if (args.help || !args.command) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@browser-compat/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "CLI for generating and checking browser-compat manifests and reports.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -27,13 +27,22 @@
|
|
|
27
27
|
"access": "public"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@browser-compat/capabilities": "0.1.
|
|
31
|
-
"@browser-compat/core": "0.1.
|
|
32
|
-
"@browser-compat/postcss": "0.1.
|
|
30
|
+
"@browser-compat/capabilities": "0.1.1",
|
|
31
|
+
"@browser-compat/core": "0.1.1",
|
|
32
|
+
"@browser-compat/postcss": "0.1.1",
|
|
33
33
|
"browserslist": "^4.24.4"
|
|
34
34
|
},
|
|
35
35
|
"scripts": {
|
|
36
36
|
"build": "tsc -b",
|
|
37
37
|
"typecheck": "tsc -b --noEmit"
|
|
38
|
+
},
|
|
39
|
+
"repository": {
|
|
40
|
+
"type": "git",
|
|
41
|
+
"url": "git+https://github.com/relaxcloud-cn/browser-compat-package.git",
|
|
42
|
+
"directory": "packages/cli"
|
|
43
|
+
},
|
|
44
|
+
"homepage": "https://github.com/relaxcloud-cn/browser-compat-package#readme",
|
|
45
|
+
"bugs": {
|
|
46
|
+
"url": "https://github.com/relaxcloud-cn/browser-compat-package/issues"
|
|
38
47
|
}
|
|
39
48
|
}
|