Skip to content

Commit

Permalink
#22 Ensuring that the old ember-cli-text-support-mixins of 1.x is used.
Browse files Browse the repository at this point in the history
  • Loading branch information
nadnoslen committed Nov 7, 2018
1 parent 6b532d8 commit 710eb9d
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 7,884 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,5 @@ testem.log
.node_modules.ember-try/
bower.json.ember-try
package.json.ember-try

/.gtm
10 changes: 8 additions & 2 deletions blueprints/ember-cli-textarea-autosize/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,14 @@ module.exports = {
normalizeEntityName: function () {
},
afterInstall: function (/*options*/) {
return this.addAddonsToProject({packages: [{name: 'ember-cli-text-support-mixins'}]}).then(() => {
return this.addPackagesToProject([{name: 'autosize'}])
return this.addAddonsToProject({
packages: [
{ name: 'ember-cli-text-support-mixins', target: '~1' }
]
}).then(() => {
return this.addPackagesToProject([
{ name: 'autosize' }
])
});
}
};
2 changes: 1 addition & 1 deletion install_ember_addons.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ember install ember-cli-deploy-build
ember install ember-cli-deploy-gzip
ember install ember-cli-deploy-s3
ember install ember-cli-font-awesome-sass
ember install ember-cli-text-support-mixins
ember install ember-cli-text-support-mixins@~1

npm install --save-dev bootswatch@3.3
npm install --save autosize@3
Loading

0 comments on commit 710eb9d

Please sign in to comment.