.autod.conf.js 365 B

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