Skip to content

Commit

Permalink
0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Kelly Selden committed Dec 13, 2014
1 parent c97633f commit 0e6a683
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

# dependencies
/node_modules
/bower_components/*
/bower_components

# misc
/.sass-cache
Expand Down
10 changes: 5 additions & 5 deletions .jshintrc
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"predef": {
"document": true,
"window": true,
"-Promise": true
},
"predef": [
"document",
"window",
"-Promise"
],
"browser" : true,
"boss" : true,
"curly": true,
Expand Down
2 changes: 2 additions & 0 deletions app/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
<link rel="stylesheet" href="assets/my-app.css">
</head>
<body>
{{content-for 'body'}}

<script src="assets/vendor.js"></script>
<script src="assets/my-app.js"></script>
</body>
Expand Down
9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,13 @@
"license": "MIT",
"devDependencies": {
"body-parser": "^1.2.0",
"broccoli-asset-rev": "0.3.0",
"broccoli-asset-rev": "0.3.1",
"broccoli-ember-hbs-template-compiler": "^1.6.1",
"ember-cli": "0.1.1",
"ember-cli-content-security-policy": "0.2.0",
"ember-cli": "0.1.2",
"ember-cli-content-security-policy": "0.3.0",
"ember-export-application-global": "^1.0.0",
"ember-cli-ic-ajax": "0.1.1",
"ember-cli-inject-live-reload": "^1.2.2",
"ember-cli-inject-live-reload": "^1.3.0",
"ember-cli-qunit": "0.1.0",
"ember-data": "1.0.0-beta.10",
"express": "^4.8.5",
Expand Down
3 changes: 3 additions & 0 deletions tests/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">

{{content-for 'head'}}
{{content-for 'test-head'}}

<link rel="stylesheet" href="assets/vendor.css">
<link rel="stylesheet" href="assets/my-app.css">
Expand All @@ -33,6 +34,8 @@
<div id="qunit"></div>
<div id="qunit-fixture"></div>

{{content-for 'body'}}
{{content-for 'test-body'}}
<script src="assets/vendor.js"></script>
<script src="assets/test-support.js"></script>
<script src="assets/my-app.js"></script>
Expand Down

0 comments on commit 0e6a683

Please sign in to comment.