Skip to content

Commit d18c9c5

Browse files
committed
Merge branch 'develop'
2 parents 2a566ae + 69bf92b commit d18c9c5

File tree

7 files changed

+44
-29
lines changed

7 files changed

+44
-29
lines changed

Taskfile.yml

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,18 +70,31 @@ tasks:
7070
- rm -rf site/static/librarySource/*
7171
- cp -r library/src/* site/static/librarySource/
7272

73+
library:
74+
dir: library
75+
requires:
76+
vars: [VERSION]
77+
sources:
78+
- "**/*.ts"
79+
- "**/*.js"
80+
- "**/*.json"
81+
generates:
82+
- "dist/**/*"
83+
cmds:
84+
- pnpm i
85+
- pnpm build
86+
7387
libpub:
7488
dir: library
7589
requires:
7690
vars: [VERSION]
7791
deps:
7892
- build
93+
- library
7994
cmds:
8095
- git push origin
8196
- git tag v{{.VERSION}}
8297
- git push origin --tags
83-
- pnpm i
84-
- pnpm build
8598
- npm publish --access public
8699
- curl https://purge.jsdelivr.net/gh/starfederation/datastar/bundles/datastar.js
87100
- git push origin --tags
@@ -123,6 +136,8 @@ tasks:
123136
templ:
124137
env:
125138
TEMPL_EXPERIMENT: rawgo
139+
deps:
140+
- library
126141
generates:
127142
- "**/*_templ.go"
128143
sources:

bundles/datastar-aliased.js

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

bundles/datastar-aliased.js.map

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

bundles/datastar.js

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

bundles/datastar.js.map

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

library/src/plugins/official/dom/attributes/on.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export const On: AttributePlugin = {
2626
keyReq: Requirement.Must,
2727
valReq: Requirement.Must,
2828
argNames: [EVT],
29-
onLoad: ({ el, key, mods, rawKey, signals, value, effect, genRX }) => {
29+
onLoad: ({ el, key, mods, signals, effect, genRX }) => {
3030
const rx = genRX()
3131
let target: Element | Window | Document = el
3232
if (mods.has('window')) target = window

sdk/go/consts.go

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

0 commit comments

Comments
 (0)