Skip to content

Commit

Permalink
Replace web-test-runner with Vitest & remove Vite from build step (#14)
Browse files Browse the repository at this point in the history
* use vitest, don't use vite for build

* fix npm scripts
  • Loading branch information
ranile authored Sep 8, 2023
1 parent 2b810e5 commit eb97150
Show file tree
Hide file tree
Showing 5 changed files with 1,500 additions and 39 deletions.
9 changes: 9 additions & 0 deletions browser/index.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import { applyPatch as applyPatchImpl, createPatch as createPatchImpl } from './json_patcher'

export function applyPatch(x, y) {
return applyPatchImpl(x, y)
}

export function createPatch(x, y) {
return createPatchImpl(x, y)
}
Loading

0 comments on commit eb97150

Please sign in to comment.