.autod.conf.js 351 B

12345678910111213141516171819202122232425262728
  1. 'use strict';
  2. module.exports = {
  3. write: true,
  4. plugin: 'autod-egg',
  5. prefix: '^',
  6. devprefix: '^',
  7. exclude: [
  8. 'test/fixtures',
  9. 'coverage',
  10. ],
  11. dep: [
  12. 'egg',
  13. 'egg-scripts',
  14. ],
  15. devdep: [
  16. 'autod',
  17. 'autod-egg',
  18. 'egg-bin',
  19. 'tslib',
  20. 'typescript',
  21. ],
  22. keep: [
  23. ],
  24. semver: [
  25. ],
  26. test: 'scripts',
  27. };