Skip to content

Commit 44b09a7

Browse files
committed
Minor updates
1 parent 940a17d commit 44b09a7

5 files changed

Lines changed: 38 additions & 21 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Or use it directly from a CDN:
2323

2424
```html
2525
<script type="module">
26-
import { morph } from "https://www.unpkg.com/morphlex@1.0.1/dist/morphlex.min.js"
26+
import { morph } from "https://www.unpkg.com/morphlex@latest/dist/morphlex.min.js"
2727
</script>
2828
```
2929

build.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ await build({
1010
minify: true,
1111
sourcemap: "external",
1212
naming: "[dir]/[name].min.[ext]",
13+
target: "browser",
1314
})
1415

1516
// Generate TypeScript declarations (skip lib check to avoid node type errors)

bun.lock

Lines changed: 24 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

jsr.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"name": "@phlex/morphlex",
3+
"version": "1.0.4",
4+
"exports": "./src/morphlex.ts",
5+
"publish": {
6+
"include": ["LICENSE", "README.md", "src/**/morphlex.ts"]
7+
}
8+
}

package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "morphlex",
3-
"version": "1.0.3",
3+
"version": "1.0.4",
44
"author": "Joel Drapper",
55
"license": "MIT",
66
"type": "module",
@@ -28,13 +28,14 @@
2828
},
2929
"devDependencies": {
3030
"@types/bun": "^1.3.2",
31-
"@typescript/native-preview": "^7.0.0-dev.20251109.1",
31+
"@typescript/native-preview": "^7.0.0-dev.20251110.1",
3232
"@vitest/browser": "^4.0.8",
3333
"@vitest/browser-playwright": "^4.0.8",
3434
"@vitest/coverage-v8": "^4.0.8",
3535
"@vitest/ui": "^4.0.8",
3636
"happy-dom": "^20.0.10",
37-
"oxlint": "^1.26.0",
37+
"jsr": "^0.13.5",
38+
"oxlint": "^1.28.0",
3839
"oxlint-tsgolint": "^0.4.0",
3940
"prettier": "^3.6.2",
4041
"typescript": "^5.9.3",

0 commit comments

Comments
 (0)