mirror of
https://github.com/actualbudget/actual.git
synced 2026-01-10 07:31:07 -06:00
31 lines
610 B
JavaScript
31 lines
610 B
JavaScript
/** @type {import('lage').ConfigOptions} */
|
|
module.exports = {
|
|
pipeline: {
|
|
test: {
|
|
type: 'npmScript',
|
|
options: {
|
|
outputGlob: [
|
|
'coverage/**',
|
|
'**/test-results/**',
|
|
'**/playwright-report/**',
|
|
],
|
|
},
|
|
},
|
|
build: {
|
|
type: 'npmScript',
|
|
cache: true,
|
|
options: {
|
|
outputGlob: ['lib-dist/**', 'dist/**', 'build/**'],
|
|
},
|
|
},
|
|
},
|
|
cacheOptions: {
|
|
cacheStorageConfig: {
|
|
provider: 'local',
|
|
outputGlob: ['lib-dist/**', 'dist/**', 'build/**'],
|
|
},
|
|
},
|
|
npmClient: 'yarn',
|
|
concurrency: 2,
|
|
};
|