@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.
Files changed (3) hide show
  1. package/CHANGELOG.md +1 -1
  2. package/README.md +8 -8
  3. package/package.json +10 -10
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2024-03-27T09:53:45Z
3
+ - **Last updated**: 2024-04-08T14:59:30Z
4
4
  - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
5
 
6
6
  All notable changes to this project will be documented in this file.
package/README.md CHANGED
@@ -7,7 +7,7 @@
7
7
  [![Mastodon Follow](https://img.shields.io/mastodon/follow/109331703950160316?domain=https%3A%2F%2Fmastodon.thi.ng&style=social)](https://mastodon.thi.ng/@toxi)
8
8
 
9
9
  > [!NOTE]
10
- > This is one of 190 standalone projects, maintained as part
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
- ES module import:
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.20",
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.9.31",
41
- "@thi.ng/checks": "^3.5.5",
42
- "@thi.ng/errors": "^2.5.2",
43
- "@thi.ng/hiccup": "^5.1.26",
44
- "@thi.ng/paths": "^5.1.76",
45
- "@thi.ng/prefixes": "^2.3.14",
46
- "@thi.ng/rstream": "^8.3.18",
47
- "@thi.ng/strings": "^3.7.28"
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": "db5f5a5d1b223a8e6b4999d67836678038fd3560\n"
146
+ "gitHead": "85ac4bd4d6d89f8e3689e2863d5bea0cecdb371c\n"
147
147
  }