forked from popcodeorg/popcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.projections.json
More file actions
23 lines (23 loc) · 840 Bytes
/
.projections.json
File metadata and controls
23 lines (23 loc) · 840 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"src/components/*.jsx": {
"type": "component",
"template": "import React from 'react';\n\nclass {camelcase|capitalize} extends React.Component {open}\n render() {open}\n {close}\n{close};\n\nexport default {camelcase|capitalize};"
},
"src/store.js": {
"type": "store"
},
"src/actions/*.js": {
"type": "action"
},
"src/reducers/*.js": {
"type": "reducer"
},
"spec/examples/*.spec.js": {
"type": "spec",
"template": "/* eslint-env mocha */\n\nimport '../../helper';\nimport {open}assert{close} from 'chai';\n\nimport {basename} from '../../../src/{}';\n\ndescribe('{basename}', () => {open}\n{close});\n"
},
"src/validations/*.js": {"type": "validation"},
"src/static/*": {"type": "static"},
"src/css/application.css": {"type": "stylesheet"},
"locales/*.json": {"type": "locale"}
}