Skip to content

Commit

Permalink
0.0.16
Browse files Browse the repository at this point in the history
  • Loading branch information
joeldrapper committed May 12, 2024
1 parent 6e71053 commit cba6cc4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ The easiest way to try out Morphlex is to import it directly from UNPKG.

```html
<script type="module">
import { morph } from "https://www.unpkg.com/[email protected].15/dist/morphlex.min.js";
import { morph } from "https://www.unpkg.com/[email protected].16/dist/morphlex.min.js";
morph(currentNode, referenceNode);
morphInner(currentNode, referenceNode);
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "morphlex",
"version": "0.0.15",
"version": "0.0.16",
"author": "Joel Drapper",
"license": "MIT",
"type": "module",
Expand All @@ -23,7 +23,7 @@
"lint": "bun run prettier --check ./src ./dist ./test",
"minify": "bun run terser dist/morphlex.js -o dist/morphlex.min.js --config-file terser-config.json",
"prepare": "bun run build && bun run minify",
"ship": "bun run prepare && bun run test && bun run lint && bun run publish",
"ship": "bun run prepare && bun run test && bun run lint && npm publish",
"format": "bun run prettier --write ./src ./dist ./test",
"size": "bun run prepare && bun run gzip-size ./dist/morphlex.min.js --raw --include-original"
},
Expand Down

0 comments on commit cba6cc4

Please sign in to comment.