Erik Söhnel

Results 7 issues of Erik Söhnel

I extended the `cljs-repl` task to allow setting the `:output-dir` for code compiled on the CLJS REPL (e.g. when `require`-ing a namespace) and other CLJS REPL options. This fixes #36...

Rename `record` to `object` because that seems to be the standard name for "interface" runtypes. Drop the existing `object` runtype completely or rename it to `plainObject` or `javascriptObject`. Keep `record`...

Change the existing `sloppyRecord` runtype functionality into a `nonStrict` combinator that works on `record` runtypes, similar to how `pick` works atm. Before: ``` import * as st from 'simple-runtypes' const...

As [TSDX](https://www.npmjs.com/package/tsdx) seems rather [unmaintained and its future unclear](https://github.com/jaredpalmer/tsdx/issues/1065). Replace it preferably with something that takes care with packaging and supports the same features as TSDX (minifying, sourcemaps, dts files,...

The record-combinators need to keep the sloppy param when creating the returned record with the modified fields.

Having all tested modules share the same node_modules namespace seems to introduce new issues / limits: 1. dependabot upgrades of Typescript seems to be unreliable: https://github.com/moltar/typescript-runtime-type-benchmarks/pull/1218#issuecomment-1987252101 2. all modules must...

The current benchmark viewer uses unpkg.com to load its dependencies. That was the easiest solution for me at the time I wrote it (a time where huge webpack configs, commonsj...