@jarenjs/play 0.56.0 → 0.67.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/README.md +14 -0
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -51,6 +51,20 @@ the *same* source over each shape. Adding an engine is a descriptor plus
|
|
|
51
51
|
examples — the picker, panes and switcher all derive from the descriptor.
|
|
52
52
|
See [docs/PLAY-FORMAT.md](docs/PLAY-FORMAT.md).
|
|
53
53
|
|
|
54
|
+
## Exports
|
|
55
|
+
|
|
56
|
+
Every subpath a consumer can import, derived from the manifest by
|
|
57
|
+
`npm run docs:derive` (`npm run docs:check` fails when the two drift):
|
|
58
|
+
|
|
59
|
+
<!--fact:exports.play-->
|
|
60
|
+
| Import | Kind | Declarations |
|
|
61
|
+
|---|---|---|
|
|
62
|
+
| `@jarenjs/play` | JavaScript | declared |
|
|
63
|
+
| `@jarenjs/play/component` | JavaScript | declared |
|
|
64
|
+
| `@jarenjs/play/styles/play.css` | asset | — |
|
|
65
|
+
| `@jarenjs/play/package.json` | metadata | — |
|
|
66
|
+
<!--/fact-->
|
|
67
|
+
|
|
54
68
|
## Install
|
|
55
69
|
|
|
56
70
|
```
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jarenjs/play",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.67.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./src/index.js",
|
|
7
7
|
"types": "./dist/types/index.d.ts",
|
|
@@ -56,10 +56,10 @@
|
|
|
56
56
|
"prepack": "npm run build:types"
|
|
57
57
|
},
|
|
58
58
|
"dependencies": {
|
|
59
|
-
"@jarenjs/contract": "^0.
|
|
60
|
-
"@jarenjs/core": "^0.
|
|
61
|
-
"@jarenjs/josl": "^0.
|
|
62
|
-
"@jarenjs/json": "^0.
|
|
63
|
-
"@jarenjs/validate": "^0.
|
|
59
|
+
"@jarenjs/contract": "^0.67.0",
|
|
60
|
+
"@jarenjs/core": "^0.67.0",
|
|
61
|
+
"@jarenjs/josl": "^0.67.0",
|
|
62
|
+
"@jarenjs/json": "^0.67.0",
|
|
63
|
+
"@jarenjs/validate": "^0.67.0"
|
|
64
64
|
}
|
|
65
65
|
}
|