simple-installer
Version:
Download and/or install programs in similar manner to chocolatey or similar installation managers.
34 lines (30 loc) • 704 B
JavaScript
;
module.exports = function () {
return {
files: [
'src/**/*.js',
{
pattern: 'tests/**/create-file.js',
instrument: false
}
],
tests: [
'tests/**/*Test.js'
],
env: {
type: 'node',
// if runner property is not set, then wallaby.js embedded node/io.js version is used
// you can specifically set the node version by specifying 'node' (or any other command)
// that resolves your default node version or just specify the path your node installation, like
runner: 'node',
// or
// runner: 'path to the desired node version'
params: {
runner: '--harmony'
}
},
delays: {
edit: 1000
}
};
};