@thi.ng/rdom 1.1.20 → 1.1.22
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/CHANGELOG.md +1 -1
- package/README.md +8 -8
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
[](https://mastodon.thi.ng/@toxi)
|
|
8
8
|
|
|
9
9
|
> [!NOTE]
|
|
10
|
-
> This is one of
|
|
10
|
+
> This is one of 191 standalone projects, maintained as part
|
|
11
11
|
> of the [@thi.ng/umbrella](https://github.com/thi-ng/umbrella/) monorepo
|
|
12
12
|
> and anti-framework.
|
|
13
13
|
>
|
|
@@ -265,7 +265,13 @@ $compile([
|
|
|
265
265
|
yarn add @thi.ng/rdom
|
|
266
266
|
```
|
|
267
267
|
|
|
268
|
-
|
|
268
|
+
ESM import:
|
|
269
|
+
|
|
270
|
+
```ts
|
|
271
|
+
import * as rdom from "@thi.ng/rdom";
|
|
272
|
+
```
|
|
273
|
+
|
|
274
|
+
Browser ESM import:
|
|
269
275
|
|
|
270
276
|
```html
|
|
271
277
|
<script type="module" src="https://cdn.skypack.dev/@thi.ng/rdom"></script>
|
|
@@ -273,12 +279,6 @@ ES module import:
|
|
|
273
279
|
|
|
274
280
|
[Skypack documentation](https://docs.skypack.dev/)
|
|
275
281
|
|
|
276
|
-
For Node.js REPL:
|
|
277
|
-
|
|
278
|
-
```js
|
|
279
|
-
const rdom = await import("@thi.ng/rdom");
|
|
280
|
-
```
|
|
281
|
-
|
|
282
282
|
Package sizes (brotli'd, pre-treeshake): ESM: 4.02 KB
|
|
283
283
|
|
|
284
284
|
## Dependencies
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/rdom",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.22",
|
|
4
4
|
"description": "Lightweight, reactive, VDOM-less UI/DOM components with async lifecycle and @thi.ng/hiccup compatible",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -37,14 +37,14 @@
|
|
|
37
37
|
"tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@thi.ng/api": "^8.
|
|
41
|
-
"@thi.ng/checks": "^3.
|
|
42
|
-
"@thi.ng/errors": "^2.5.
|
|
43
|
-
"@thi.ng/hiccup": "^5.1.
|
|
44
|
-
"@thi.ng/paths": "^5.1.
|
|
45
|
-
"@thi.ng/prefixes": "^2.3.
|
|
46
|
-
"@thi.ng/rstream": "^8.3.
|
|
47
|
-
"@thi.ng/strings": "^3.7.
|
|
40
|
+
"@thi.ng/api": "^8.10.0",
|
|
41
|
+
"@thi.ng/checks": "^3.6.0",
|
|
42
|
+
"@thi.ng/errors": "^2.5.3",
|
|
43
|
+
"@thi.ng/hiccup": "^5.1.27",
|
|
44
|
+
"@thi.ng/paths": "^5.1.77",
|
|
45
|
+
"@thi.ng/prefixes": "^2.3.15",
|
|
46
|
+
"@thi.ng/rstream": "^8.3.20",
|
|
47
|
+
"@thi.ng/strings": "^3.7.29"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"@microsoft/api-extractor": "^7.43.0",
|
|
@@ -143,5 +143,5 @@
|
|
|
143
143
|
],
|
|
144
144
|
"year": 2020
|
|
145
145
|
},
|
|
146
|
-
"gitHead": "
|
|
146
|
+
"gitHead": "85ac4bd4d6d89f8e3689e2863d5bea0cecdb371c\n"
|
|
147
147
|
}
|