-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.importjs.js
73 lines (73 loc) · 1.73 KB
/
.importjs.js
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
module.exports = {
aliases: {
React: 'react',
mobx: 'mobx',
// constelation
Text: 'constelation-text',
Video: 'constelation-Video',
TransitionGroupView: 'constelation-transition-group-view',
ScrollView: 'constelation-scroll-view',
// View: 'constelation-view',
Space: 'constelation-space',
Style_: 'constelation-style_',
Event_: 'constelation-event_',
Animate_: 'constelation-animate_',
keydown: 'constelation-keydown-decorator',
// shared
// TODO: fill in the rest
},
namedExports: {
'mobx-react': [
'observer',
'inject',
'Provider',
],
'constelation-animate_': [
'Animate',
'emitAnimationEvent',
],
'constelation-dom': [
'disableScroll',
'enableScroll',
'getElementOffsetTop',
'getScrollTop',
'scrollToY'
],
'constelation-style_': [
'Style',
],
'constelation-event_': [
// 'Event_',
'Event',
],
'constelation-view': [
'View',
'Row',
'Col',
],
'decko': [
'bind',
],
},
groupImports: true,
useRelativePaths({ pathToImportedModule, pathToCurrentFile }) {
// relative iff there is an underscore (subcomponent) in path
if (/_/.test(pathToImportedModule)) {
return true;
}
return false;
},
importStatementFormatter({ importStatement }) {
// no semicolons
return importStatement.replace(/;$/, '');
},
moduleNameFormatter({ moduleName, pathToCurrentFile }) {
// shortcut for aliased paths
if (moduleName.startsWith('src/')) {
return moduleName.slice(4);
}
// Fall back to the original specifier. It's important that this function
// always returns a string.
return moduleName;
}
}