-
Notifications
You must be signed in to change notification settings - Fork 381
Expand file tree
/
Copy pathdoctor-1.13.1.ts
More file actions
23 lines (22 loc) · 1.55 KB
/
doctor-1.13.1.ts
File metadata and controls
23 lines (22 loc) · 1.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import { FN001008_DEP_react } from './rules/FN001008_DEP_react.js';
import { FN001009_DEP_react_dom } from './rules/FN001009_DEP_react_dom.js';
import { FN001022_DEP_office_ui_fabric_react } from './rules/FN001022_DEP_office_ui_fabric_react.js';
import { FN002004_DEVDEP_gulp } from './rules/FN002004_DEVDEP_gulp.js';
import { FN002007_DEVDEP_ajv } from './rules/FN002007_DEVDEP_ajv.js';
import { FN002013_DEVDEP_types_webpack_env } from './rules/FN002013_DEVDEP_types_webpack_env.js';
import { FN002015_DEVDEP_types_react } from './rules/FN002015_DEVDEP_types_react.js';
import { FN002016_DEVDEP_types_react_dom } from './rules/FN002016_DEVDEP_types_react_dom.js';
import { FN002019_DEVDEP_microsoft_rush_stack_compiler } from './rules/FN002019_DEVDEP_microsoft_rush_stack_compiler.js';
import { FN021001_PKG_spfx_deps_versions_match_project_version } from './rules/FN021001_PKG_spfx_deps_versions_match_project_version.js';
export default [
new FN001008_DEP_react({ supportedRange: '16' }),
new FN001009_DEP_react_dom({ supportedRange: '16' }),
new FN001022_DEP_office_ui_fabric_react({ supportedRange: '7.174.1' }),
new FN002004_DEVDEP_gulp({ supportedRange: '~4.0.2' }),
new FN002007_DEVDEP_ajv({ supportedRange: '~5.2.2' }),
new FN002013_DEVDEP_types_webpack_env({ supportedRange: '1.13.1' }),
new FN002015_DEVDEP_types_react({ supportedRange: '16' }),
new FN002016_DEVDEP_types_react_dom({ supportedRange: '16' }),
new FN002019_DEVDEP_microsoft_rush_stack_compiler({ supportedVersions: ['3.9'] }),
new FN021001_PKG_spfx_deps_versions_match_project_version()
];