-
Notifications
You must be signed in to change notification settings - Fork 6
/
.projections.json
40 lines (40 loc) · 1.19 KB
/
.projections.json
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
{
"app/routes/*.coffee": {"type": "route"},
"app/templates/*.handlebars": {"type": "template"},
"app/templates/*.hbs": {"type": "template"},
"app/templates/*.hbars": {"type": "template"},
"app/templates/*.haml": {"type": "template"},
"app/styles/*.sass": {"type": "stylesheet"},
"app/views/*.coffee": {
"type": "view",
"template": [
"{camelcase}View = Ember.View.extend",
"`export default {camelcase}View`"]
},
"app/models/*.coffee": {
"type": "model",
"alternate": "tests/unit/models/{}-test.coffee"
},
"app/serializers/*.coffee": {
"type": "serializer",
"alternate": "tests/unit/serializers/{}-test.coffee"
},
"app/components/*.coffee": {
"type": "component",
"alternate": "tests/unit/components/{}-test.coffee"
},
"app/controllers/*.coffee": {
"type": "controller",
"alternate": "tests/unit/controllers/{}-test.coffee",
"template": [
"{camelcase}Controller = Ember.Controller.extend",
"`export default {camelcase}Controller`"]
},
"tests/unit/*-test.coffee": {
"type": "test",
"alternate": "app/{}.coffee"
},
"tests/acceptance/*-test.coffee": {
"type": "acceptance"
},
}