Precise DOM morphing
morphing typescript dom

0.0.16

+3 -3
+1 -1
README.md
··· 24 24 25 25 ```html 26 26 <script type="module"> 27 - import { morph } from "https://www.unpkg.com/morphlex@0.0.15/dist/morphlex.min.js"; 27 + import { morph } from "https://www.unpkg.com/morphlex@0.0.16/dist/morphlex.min.js"; 28 28 29 29 morph(currentNode, referenceNode); 30 30 morphInner(currentNode, referenceNode);
+2 -2
package.json
··· 1 1 { 2 2 "name": "morphlex", 3 - "version": "0.0.15", 3 + "version": "0.0.16", 4 4 "author": "Joel Drapper", 5 5 "license": "MIT", 6 6 "type": "module", ··· 23 23 "lint": "bun run prettier --check ./src ./dist ./test", 24 24 "minify": "bun run terser dist/morphlex.js -o dist/morphlex.min.js --config-file terser-config.json", 25 25 "prepare": "bun run build && bun run minify", 26 - "ship": "bun run prepare && bun run test && bun run lint && bun run publish", 26 + "ship": "bun run prepare && bun run test && bun run lint && npm publish", 27 27 "format": "bun run prettier --write ./src ./dist ./test", 28 28 "size": "bun run prepare && bun run gzip-size ./dist/morphlex.min.js --raw --include-original" 29 29 },