16 строки
387 B
JavaScript
16 строки
387 B
JavaScript
module.exports = {
|
|
npmClient: 'yarn',
|
|
pipeline: {
|
|
['build-tools']: ['^build-tools'],
|
|
build: ['build-tools', '^build'],
|
|
buildci: ['build', 'test', 'depcheck', 'bundle'],
|
|
bundle: ['build-tools'],
|
|
clean: [],
|
|
depcheck: ['build-tools'],
|
|
lint: ['build-tools'],
|
|
['verify-api']: [],
|
|
['update-api']: [],
|
|
test: ['build-tools', 'lint', 'build'],
|
|
},
|
|
};
|