Skip to content

Instantly share code, notes, and snippets.

@basz
Created November 16, 2020 09:49
Show Gist options
  • Save basz/d87d87cfc14f1cf2d2cc68af21dd2c7c to your computer and use it in GitHub Desktop.
Save basz/d87d87cfc14f1cf2d2cc68af21dd2c7c to your computer and use it in GitHub Desktop.
ignore: [
'/ember-test(/|$)',
'/tests(/|$)',
'/out(/|$)',
(() => {
switch (process.platform) {
case 'darwin':
return '\\.msi|exe$';
case 'linux': // note when we build for win32 that is actually done with a docker build where the platform is linux
return '\\.(pkg)$';
case 'win32':
return '\\.(pkg)$';
}
})(),
],
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment