Skip to content

Commit

Permalink
jquery optional to true for old builds
Browse files Browse the repository at this point in the history
  • Loading branch information
jlami committed Mar 11, 2020
1 parent a95d37b commit 9d2ffdc
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions config/ember-try.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,12 @@ module.exports = async function() {
},
{
name: 'ember-lts-2.12',
env: {
EMBER_OPTIONAL_FEATURES: JSON.stringify({ 'jquery-integration': true }),
},
npm: {
devDependencies: {
'@ember/jquery': '^0.5.1',
'ember-data': '2.12.2',
'ember-inflector': '^1.9.4',
'ember-source': '2.12.2',
Expand All @@ -55,26 +59,38 @@ module.exports = async function() {
},
{
name: 'ember-2.14-stack',
env: {
EMBER_OPTIONAL_FEATURES: JSON.stringify({ 'jquery-integration': true }),
},
npm: {
devDependencies: {
'@ember/jquery': '^0.5.1',
'ember-data': '~2.14.0',
'ember-source': '~2.14.0',
}
},
},
{
name: 'ember-lts-2.16',
env: {
EMBER_OPTIONAL_FEATURES: JSON.stringify({ 'jquery-integration': true }),
},
npm: {
devDependencies: {
'@ember/jquery': '^0.5.1',
'ember-data': '~2.16.0',
'ember-source': '~2.16.0',
}
}
},
{
name: 'ember-lts-2.18',
env: {
EMBER_OPTIONAL_FEATURES: JSON.stringify({ 'jquery-integration': true }),
},
npm: {
devDependencies: {
'@ember/jquery': '^0.5.1',
'ember-data': '~2.18.0',
'ember-source': '~2.18.0',
}
Expand Down

0 comments on commit 9d2ffdc

Please sign in to comment.