@pwrs/cem 0.2.13 → 0.2.15
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/README.md +13 -4
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -34,6 +34,14 @@ With `cem list`, you can quickly explore and audit your custom elements API surf
|
|
|
34
34
|
|
|
35
35
|
See more in the [List docs][listdocs]
|
|
36
36
|
|
|
37
|
+
---
|
|
38
|
+
|
|
39
|
+
### `cem validate`
|
|
40
|
+
|
|
41
|
+
The `cem validate` command validates your `custom-elements.json` file against the official JSON schema and provides intelligent warnings for potentially inappropriate manifest content. Beyond basic schema validation, it analyzes your manifest for lifecycle methods, private implementations, and other patterns that shouldn't be part of your public API documentation.
|
|
42
|
+
|
|
43
|
+
See more in the [Validate docs][validatedocs]
|
|
44
|
+
|
|
37
45
|
See the [Configuration Reference][configdocs] for more information.
|
|
38
46
|
|
|
39
47
|
---
|
|
@@ -57,7 +65,8 @@ the terms of the [GNU General Public License v3.0][gpl3].
|
|
|
57
65
|
[gpl3]: https://www.gnu.org/licenses/gpl-3.0.html
|
|
58
66
|
[contributingmd]: https://bennypowers.github.io/cem/docs/contributing/
|
|
59
67
|
[issuenew]: https://github.com/bennypowers/cem/issues/new
|
|
60
|
-
[installationdocs]: https://bennypowers.github.io/cem/
|
|
61
|
-
[generatedocs]: https://bennypowers.github.io/cem/
|
|
62
|
-
[listdocs]: https://bennypowers.github.io/cem/
|
|
63
|
-
[
|
|
68
|
+
[installationdocs]: https://bennypowers.github.io/cem/installation/
|
|
69
|
+
[generatedocs]: https://bennypowers.github.io/cem/commands/generate/
|
|
70
|
+
[listdocs]: https://bennypowers.github.io/cem/commands/list/
|
|
71
|
+
[validatedocs]: https://bennypowers.github.io/cem/commands/validate/
|
|
72
|
+
[configdocs]: https://bennypowers.github.io/cem/configuration/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pwrs/cem",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.15",
|
|
4
4
|
"description": "CLI tool for generating and working with Custom Elements Manifests",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"engines": {
|
|
@@ -13,12 +13,12 @@
|
|
|
13
13
|
"postinstall": "node ./install-platform-binary.js"
|
|
14
14
|
},
|
|
15
15
|
"optionalDependencies": {
|
|
16
|
-
"@pwrs/cem-linux-x64": "0.2.
|
|
17
|
-
"@pwrs/cem-linux-arm64": "0.2.
|
|
18
|
-
"@pwrs/cem-darwin-x64": "0.2.
|
|
19
|
-
"@pwrs/cem-darwin-arm64": "0.2.
|
|
20
|
-
"@pwrs/cem-win32-x64": "0.2.
|
|
21
|
-
"@pwrs/cem-win32-arm64": "0.2.
|
|
16
|
+
"@pwrs/cem-linux-x64": "0.2.15",
|
|
17
|
+
"@pwrs/cem-linux-arm64": "0.2.15",
|
|
18
|
+
"@pwrs/cem-darwin-x64": "0.2.15",
|
|
19
|
+
"@pwrs/cem-darwin-arm64": "0.2.15",
|
|
20
|
+
"@pwrs/cem-win32-x64": "0.2.15",
|
|
21
|
+
"@pwrs/cem-win32-arm64": "0.2.15"
|
|
22
22
|
},
|
|
23
23
|
"files": [
|
|
24
24
|
"bin/cem.js",
|