Created
November 16, 2020 09:49
-
-
Save basz/d87d87cfc14f1cf2d2cc68af21dd2c7c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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