docs: Added development umd module

This commit is contained in:
Revone 2023-11-13 22:30:59 +08:00
parent 8f1f6d6f52
commit 65af9d6f20
2 changed files with 8 additions and 1 deletions

View file

@ -50,6 +50,13 @@ import {
### CDN
Copy the line below into the head tag in an HTML document.
#### development
```html
<script src='https://cdn.jsdelivr.net/npm/data-structure-typed/dist/umd/data-structure-typed.js'></script>
```
#### production
```html
<script src='https://cdn.jsdelivr.net/npm/data-structure-typed/dist/umd/data-structure-typed.min.js'></script>
```

View file

@ -1,6 +1,6 @@
{
"name": "data-structure-typed",
"version": "1.43.2",
"version": "1.43.3",
"description": "Data Structures of Javascript & TypeScript. Binary Tree, BST, Graph, Heap, Priority Queue, Linked List, Queue, Deque, Stack, AVL Tree, Tree Multiset, Trie, Directed Graph, Undirected Graph, Singly Linked List, Doubly Linked List, Max Heap, Max Priority Queue, Min Heap, Min Priority Queue.",
"main": "dist/cjs/src/index.js",
"module": "dist/mjs/src/index.js",