-
-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathutils.ts
38 lines (37 loc) · 1.31 KB
/
utils.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/** DON'T EDIT THIS FILE; was created by scripts. */
import * as cacheFunction from './utils/cache-function'
import * as cacheLoader from './utils/cache-loader'
import * as casing from './utils/casing'
import * as collectKeys from './utils/collect-keys'
import * as collectLinkedKeys from './utils/collect-linked-keys'
import * as defaultTimeouts from './utils/default-timeouts'
import * as getCwd from './utils/get-cwd'
import * as globUtils from './utils/glob-utils'
import * as ignoredPaths from './utils/ignored-paths'
import * as index from './utils/index'
import * as keyPath from './utils/key-path'
import * as localeMessages from './utils/locale-messages'
import * as parsers from './utils/parsers'
import * as pathUtils from './utils/path-utils'
import * as regexp from './utils/regexp'
import * as resourceLoader from './utils/resource-loader'
import * as rule from './utils/rule'
export default {
'cache-function': cacheFunction,
'cache-loader': cacheLoader,
casing,
'collect-keys': collectKeys,
'collect-linked-keys': collectLinkedKeys,
'default-timeouts': defaultTimeouts,
'get-cwd': getCwd,
'glob-utils': globUtils,
'ignored-paths': ignoredPaths,
index,
'key-path': keyPath,
'locale-messages': localeMessages,
parsers,
'path-utils': pathUtils,
regexp,
'resource-loader': resourceLoader,
rule
}