Skip to content

Commit 2f133cd

Browse files
committed
Complete Mini-Van 0.6.2
1 parent 0688f74 commit 2f133cd

12 files changed

+808
-1109
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ Sample code:
154154
_Requires Deno `1.35` or later._
155155
156156
```typescript
157-
import van from "https://deno.land/x/[email protected].1/src/van-plate.js"
157+
import van from "https://deno.land/x/[email protected].2/src/van-plate.js"
158158

159159
const {a, body, li, p, ul} = van.tags
160160

@@ -195,7 +195,7 @@ _Requires Deno `1.35` or later._
195195
196196
```typescript
197197
import { DOMParser } from "https://deno.land/x/[email protected]/deno-dom-wasm.ts"
198-
import van from "https://deno.land/x/[email protected].1/src/mini-van.js"
198+
import van from "https://deno.land/x/[email protected].2/src/mini-van.js"
199199

200200
const document = new DOMParser().parseFromString("", "text/html")!
201201
const {tags, html} = van.vanWithDoc(document)
@@ -235,16 +235,16 @@ Preview via [CodeSandbox](https://codesandbox.io/p/sandbox/github/vanjs-org/vanj
235235
To get started on the client side, add the line below to your script:
236236
237237
```javascript
238-
import van from "https://cdn.jsdelivr.net/gh/vanjs-org/mini-van/public/mini-van-0.6.1.min.js"
238+
import van from "https://cdn.jsdelivr.net/gh/vanjs-org/mini-van/public/mini-van-0.6.2.min.js"
239239
```
240240
241241
To code without ES6 modules, add the following line to your HTML file instead:
242242
243243
```html
244-
<script type="text/javascript" src="https://cdn.jsdelivr.net/gh/vanjs-org/mini-van/public/mini-van-0.6.1.nomodule.min.js"></script>
244+
<script type="text/javascript" src="https://cdn.jsdelivr.net/gh/vanjs-org/mini-van/public/mini-van-0.6.2.nomodule.min.js"></script>
245245
```
246246
247-
Alternative, you can download the files ([`mini-van-0.6.1.min.js`](https://vanjs.org/autodownload?file=mini-van-0.6.1.min.js), [`mini-van-0.6.1.nomodule.min.js`](https://vanjs.org/autodownload?file=mini-van-0.6.1.nomodule.min.js)) and serve them locally.
247+
Alternative, you can download the files ([`mini-van-0.6.2.min.js`](https://vanjs.org/autodownload?file=mini-van-0.6.2.min.js), [`mini-van-0.6.2.nomodule.min.js`](https://vanjs.org/autodownload?file=mini-van-0.6.2.nomodule.min.js)) and serve them locally.
248248
249249
You can find all relevant **Mini-Van** files in this [Download Table](https://vanjs.org/minivan#download-table).
250250

0 commit comments

Comments
 (0)