Skip to content

Instantly share code, notes, and snippets.

@AndrewRadev
Last active May 6, 2021 17:47
Show Gist options
  • Save AndrewRadev/3524ee46bca8ab349329 to your computer and use it in GitHub Desktop.
Save AndrewRadev/3524ee46bca8ab349329 to your computer and use it in GitHub Desktop.

Revisions

  1. AndrewRadev revised this gist May 22, 2016. 1 changed file with 20 additions and 20 deletions.
    40 changes: 20 additions & 20 deletions ember-projections.json
    Original file line number Diff line number Diff line change
    @@ -1,44 +1,44 @@
    {
    "app/initializers/*.coffee": {
    "app/initializers/*.js": {
    "type": "initializer"
    },
    "app/models/*.coffee": {
    "app/models/*.js": {
    "type": "model",
    "alternate": "app/adapters/{}.coffee",
    "alternate": "app/adapters/{}.js",
    },
    "app/adapters/*.coffee": {
    "app/adapters/*.js": {
    "type": "adapter",
    "alternate": "app/serializers/{}.coffee",
    "alternate": "app/serializers/{}.js",
    },
    "app/serializers/*.coffee": {
    "app/serializers/*.js": {
    "type": "serializer",
    "alternate": "app/models/{}.coffee",
    "alternate": "app/models/{}.js",
    },
    "app/services/*.coffee": {
    "app/services/*.js": {
    "type": "service",
    },
    "app/routes/*.coffee": {
    "app/routes/*.js": {
    "type": "route",
    "alternate": "app/controllers/{}.coffee",
    "alternate": "app/controllers/{}.js",
    },
    "app/controllers/*.coffee": {
    "app/controllers/*.js": {
    "type": "controller",
    "alternate": "app/templates/{}.emblem",
    "alternate": "app/templates/{}.hbs",
    },
    "app/templates/*.emblem": {
    "app/templates/*.hbs": {
    "type": "template",
    "alternate": "app/routes/{}.coffee",
    "alternate": "app/routes/{}.js",
    },
    "app/components/*.coffee": {
    "app/components/*.js": {
    "type": "component",
    "alternate": "app/templates/components/{}.emblem",
    "alternate": "app/templates/components/{}.hbs",
    },
    "app/components/*/component.coffee": {
    "app/components/*/component.js": {
    "type": "component",
    "alternate": "app/components/{}/template.emblem",
    "alternate": "app/components/{}/template.hbs",
    },
    "app/templates/components/*.emblem": {
    "app/templates/components/*.hbs": {
    "type": "ctemplate",
    "alternate": "app/components/{}.coffee",
    "alternate": "app/components/{}.js",
    }
    }
  2. AndrewRadev renamed this gist Feb 17, 2016. 1 changed file with 0 additions and 0 deletions.
    File renamed without changes.
  3. AndrewRadev created this gist Feb 17, 2016.
    44 changes: 44 additions & 0 deletions .projections.json
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,44 @@
    {
    "app/initializers/*.coffee": {
    "type": "initializer"
    },
    "app/models/*.coffee": {
    "type": "model",
    "alternate": "app/adapters/{}.coffee",
    },
    "app/adapters/*.coffee": {
    "type": "adapter",
    "alternate": "app/serializers/{}.coffee",
    },
    "app/serializers/*.coffee": {
    "type": "serializer",
    "alternate": "app/models/{}.coffee",
    },
    "app/services/*.coffee": {
    "type": "service",
    },
    "app/routes/*.coffee": {
    "type": "route",
    "alternate": "app/controllers/{}.coffee",
    },
    "app/controllers/*.coffee": {
    "type": "controller",
    "alternate": "app/templates/{}.emblem",
    },
    "app/templates/*.emblem": {
    "type": "template",
    "alternate": "app/routes/{}.coffee",
    },
    "app/components/*.coffee": {
    "type": "component",
    "alternate": "app/templates/components/{}.emblem",
    },
    "app/components/*/component.coffee": {
    "type": "component",
    "alternate": "app/components/{}/template.emblem",
    },
    "app/templates/components/*.emblem": {
    "type": "ctemplate",
    "alternate": "app/components/{}.coffee",
    }
    }