-
Notifications
You must be signed in to change notification settings - Fork 11
/
default-settings.js
64 lines (64 loc) · 1.63 KB
/
default-settings.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
module.exports = {
addTestFiles: true,
addStyleFiles: true,
testSuffix: '.spec',
testPassOnDefault: true,
stylePrefix: '_',
editorCommand: 'idea',
uiRouter: true,
baseState: 'private.',
moduleName: 'aaal',
pathOutputStyle: 'dasherize',
routesFile: 'app/scripts/aaal/aaal-routes.js',
slcServiceCommandArgs: ['../server/server.js', 'app/scripts/aaal/global-services/lb-services-s.js'],
pathToModels: './../common/models',
fileExt: {
script: '.js',
tpl: '.html',
style: '.scss'
},
modelListSettings: {
additionalFields: {
'*': {
updatedAt: {
type: 'date',
readonly: true
},
createdAt: {
type: 'date',
readonly: true
}
}
}
},
dirs: {
app: 'app',
basePath: 'scripts/aaal',
routes: 'routes',
components: 'components',
filters: 'global-filters'
},
subGenerators: {
overview: {
stateSuffix: 'List',
subRoute: 'list',
suffix: '-list-c',
nameSuffix: 'ListCtrl',
createDirectory: true
},
edit: {
stateSuffix: 'Edit',
subRoute: 'edit',
suffix: '-edit-c',
nameSuffix: 'EditCtrl',
createDirectory: true
},
view: {
stateSuffix: 'View',
subRoute: 'view',
suffix: '-view-c',
nameSuffix: 'ViewCtrl',
createDirectory: true
}
}
};