123456789101112131415161718192021222324252627 |
- 'use strict';
- module.exports = {
- write: true,
- prefix: '^',
- plugin: 'autod-egg',
- test: [
- 'test',
- 'benchmark',
- ],
- dep: [
- 'egg'
- ],
- devdep: [
- 'egg-ci',
- 'egg-bin',
- 'autod',
- 'eslint',
- 'eslint-config-egg',
- 'webstorm-disable-index',
- ],
- exclude: [
- './test/fixtures',
- './dist',
- ],
- };
|