-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update for Fastboot 1.0 #35
Changes from 3 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
{ | ||
"name": "ember-cli-new-version", | ||
"version": "1.1.0", | ||
"version": "1.2.0", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please don't bump the version 👍 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ha yes forgot to change this back. When testing the package lock kept causing a cached version to be installed so took drastic measures |
||
"description": "A convention based update notification for Ember. With this addon, you can detect a new version and notify the user to refresh the page", | ||
"directories": { | ||
"doc": "doc", | ||
"test": "tests" | ||
}, | ||
"scripts": { | ||
"build": "ember build", | ||
"start": "ember server --live-reload=false", | ||
"test": "ember try:testall" | ||
"start": "ember server", | ||
"test": "ember try:each" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
|
@@ -21,25 +21,24 @@ | |
"author": "", | ||
"license": "MIT", | ||
"devDependencies": { | ||
"broccoli-asset-rev": "^2.2.0", | ||
"broccoli-file-creator": "^1.1.0", | ||
"ember-cli": "1.13.13", | ||
"ember-cli-app-version": "^1.0.0", | ||
"ember-cli-content-security-policy": "0.4.0", | ||
"ember-cli-dependency-checker": "^1.1.0", | ||
"ember-cli-htmlbars-inline-precompile": "^0.3.1", | ||
"ember-cli-ic-ajax": "0.2.4", | ||
"ember-cli-inject-live-reload": "^1.3.1", | ||
"ember-cli-qunit": "^1.0.4", | ||
"ember-cli-release": "0.2.8", | ||
"ember-cli-sri": "^1.2.0", | ||
"broccoli-asset-rev": "^2.5.0", | ||
"ember-ajax": "^3.0.0", | ||
"ember-cli": "~2.14.0", | ||
"ember-cli-dependency-checker": "^2.0.1", | ||
"ember-cli-eslint": "^4.1.0", | ||
"ember-cli-htmlbars-inline-precompile": "^0.4.3", | ||
"ember-cli-inject-live-reload": "^1.6.1", | ||
"ember-cli-qunit": "^4.0.0", | ||
"ember-cli-shims": "^1.1.0", | ||
"ember-cli-sri": "^2.1.1", | ||
"ember-cli-uglify": "^1.2.0", | ||
"ember-data": "1.13.15", | ||
"ember-disable-prototype-extensions": "^1.0.0", | ||
"ember-disable-proxy-controllers": "^1.0.1", | ||
"ember-export-application-global": "^1.0.4", | ||
"ember-getowner-polyfill": "1.0.1", | ||
"ember-try": "^0.2.6" | ||
"ember-disable-prototype-extensions": "^1.1.2", | ||
"ember-export-application-global": "^2.0.0", | ||
"ember-load-initializers": "^1.0.0", | ||
"ember-resolver": "^4.2.1", | ||
"ember-source": "~2.14.0", | ||
"ember-welcome-page": "^3.1.1", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Could you also remove this dependency? Thanks! |
||
"loader.js": "^4.5.1" | ||
}, | ||
"keywords": [ | ||
"ember-addon", | ||
|
@@ -49,9 +48,9 @@ | |
"new version" | ||
], | ||
"dependencies": { | ||
"ember-cli-babel": "^5.1.5", | ||
"ember-cli-htmlbars": "^1.0.1", | ||
"broccoli-file-creator": "^1.1.0" | ||
"broccoli-file-creator": "^1.1.1", | ||
"ember-cli-babel": "^6.5.1", | ||
"ember-cli-htmlbars": "^1.0.1" | ||
}, | ||
"ember-addon": { | ||
"configPath": "tests/dummy/config" | ||
|
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<h2 id="title">Welcome to Ember</h2> | ||
<h2 id="title">Ember New Version</h2> | ||
|
||
{{outlet}} | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also, could you make this a multiline if, just so it goes with the rest of the syntax?