| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| README.md | 2022-07-03 | 1.1 kB | |
| v0.5.6 source code.tar.gz | 2022-07-03 | 134.4 kB | |
| v0.5.6 source code.zip | 2022-07-03 | 182.3 kB | |
| Totals: 3 Items | 317.8 kB | 1 | |
Patches
- (
uvu): Ensure tests fail if haveprocess.exitor unresolved Promises (#206, [#207]): 70b59e7 Thank you @rictic~! - (
uvu/diff): Print BigInts within JSON correctly (#186): d764c08 Thank you @rdmurphy~! - (
uvu): AttachglobalThis.UVU_DEFERtoisCLIbool guard: 213efb5 -
(
uvu/run): Moveuvuimports into function call: f735f5a Both of these commits enable (some) programmatic-styleuvuusage.```js // Basic ESM programmatic usage // --- let { run } = await import('uvu/run'); let { parse } = await import('uvu/parse');
// find all "src/*/.test.ts" files let { suites } = await parse('src', /.test.ts$/, { require: ['tsm'], });
try { await run(suites); } catch (err) { console.error(err.stack || err); process.exitCode = 1; } ```
Note: This will still be greatly simplified in a future release (#113)
Chores
- Bump
setup-nodeimage version for CI: 2831a14
Full Changelog: https://github.com/lukeed/uvu/compare/v0.5.5...v0.5.6