-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release 1.0.1-alpha.10 - Fixed component setup from addon to app
Add missing bowerrc Allows installing bower components after clone Fix component setup from addon to app New setup allows using the same template for multiple component names. This fixes the `{{new-version-notifier}}` not working previously, since it didn't have a template (it needed a template with it's own name). This fix allows one template to be used for both. Also added a simple test in the dummy app with a VERSION.txt Add missing bowerrc Allows installing bower components after clone Fix component setup from addon to app New setup allows using the same template for multiple component names. This fixes the `{{new-version-notifier}}` not working previously, since it didn't have a template (it needed a template with it's own name). This fix allows one template to be used for both. Also added a simple test in the dummy app with a VERSION.txt
- Loading branch information
Ilya Radchenko
authored and
Seth Webster
committed
Dec 28, 2015
1 parent
c50aac3
commit f3c4a83
Showing
9 changed files
with
19 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"directory": "bower_components", | ||
"analytics": false | ||
} |
2 changes: 2 additions & 0 deletions
2
addon/components/ember-cli-new-version.js → ...ponents/new-version-notifier/component.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
import Ember from 'ember'; | ||
import EmberCliNewVersion from 'ember-cli-new-version/components/ember-cli-new-version'; | ||
export default EmberCliNewVersion; | ||
import NewVersionNotifier from 'ember-cli-new-version/components/new-version-notifier/component'; | ||
export default NewVersionNotifier; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/*jshint esnext:true */ | ||
|
||
import Ember from 'ember'; | ||
import EmberCliNewVersion from 'ember-cli-new-version/components/ember-cli-new-version'; | ||
export default EmberCliNewVersion; | ||
import NewVersionNotifier from 'ember-cli-new-version/components/new-version-notifier/component'; | ||
export default NewVersionNotifier; |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
<h2 id="title">Welcome to Ember</h2> | ||
|
||
{{outlet}} | ||
|
||
{{ember-cli-new-version}} | ||
{{new-version-notifier}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
1.0.5 |