Skip to content

Instantly share code, notes, and snippets.

View safarmer's full-sized avatar

Shane Farmer safarmer

View GitHub Profile
@safarmer
safarmer / wallaby.conf.js
Created January 23, 2021 01:10
A Wallaby.js configuration that works for testing release-please
module.exports = wallaby => {
const path = require('path');
process.env.NODE_PATH +=
path.delimiter + path.join(wallaby.projectCacheDir, 'src');
return {
autoDetect: false,
files: [
'src/**/*.ts',