.autod.conf.js 342 B

123456789101112131415161718192021222324252627
  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. ],
  13. devdep: [
  14. 'egg-ci',
  15. 'egg-bin',
  16. 'autod',
  17. 'eslint',
  18. 'eslint-config-egg',
  19. 'webstorm-disable-index',
  20. ],
  21. exclude: [
  22. './test/fixtures',
  23. './dist',
  24. ],
  25. };