Skip to content

Commit

Permalink
up jquery version
Browse files Browse the repository at this point in the history
  • Loading branch information
toddjordan committed Jan 12, 2017
1 parent 31c5ddc commit 23b977e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
7 changes: 3 additions & 4 deletions blueprints/ember-cli-dynamic-forms/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,10 @@ module.exports = {

afterInstall: function () {
return this.addBowerPackagesToProject([
{ name: 'jquery', target: '~2.1.0' },
{ name: 'alpaca', target: '~1.5.22' },
{ name: 'handlebars', target: '3.0.3' },
{ name: 'jquery', target: '~3.1.1' },
{ name: 'bootstrap', target: '3.3.2' },
{ name: 'lodash', target: '~4.6.1' }
{ name: 'lodash', target: '~4.6.1' },
{ name: 'alpaca', target: '1.5.22' }
]);
}
};
6 changes: 3 additions & 3 deletions bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
"dependencies": {
"ember": "~2.8.0",
"ember-cli-shims": "0.1.1",
"jquery": ">=2.1.0",
"jquery": "<4.0.0",
"alpaca": "~1.5.22",
"bootstrap": "3.3.2",
"lodash": "~4.6.1"
},
"resolutions": {
"jquery": ">=2.1.0",
"bootstrap": "3.3.2",
"tinycolor": "1.3.0"
"tinycolor": "1.3.0",
"jquery": "~3.1.1"
}
}
1 change: 1 addition & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ module.exports = {
}

app.import(app.bowerDirectory + '/alpaca/dist/alpaca/bootstrap/alpaca.js');

// include alpaca styles unless explicitly told otherwise
if(!('includeAlpacaStyles' in options) || options.includeAlpacaStyles) {
app.import(app.bowerDirectory + '/alpaca/dist/alpaca/bootstrap/alpaca.css');
Expand Down

0 comments on commit 23b977e

Please sign in to comment.