Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@ on:
push:
branches:
- master
- v3.x
pull_request:
branches:
- master
- v3.x

jobs:
build:
Expand Down
1 change: 1 addition & 0 deletions src/adapter/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ export function xify<T extends fs.ComposibleValidatable<any>>(state: T): Xify<T>
reset() { state.reset() },
resetWith(v: ValueOf<T>) { state.reset() },
set() { throw new Error('`set()` is supported.') },
onChange() { throw new Error('`onChange()` is supported.') },
dispose() {},
_dirtyWith(v: ValueOf<T>) { return getDirty(state) },
get dirty() { return getDirty(state) },
Expand Down
Loading