Skip to content
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

Fix CI #102

Merged
merged 3 commits into from
Dec 9, 2017
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Copy ember-try scenarios from other repo
cibernox committed Dec 9, 2017
commit df2e25507ab3d15c386a242ff5fd8d25b9878db1
45 changes: 36 additions & 9 deletions config/ember-try.js
Original file line number Diff line number Diff line change
@@ -4,9 +4,20 @@ module.exports = {
scenarios: [
{
name: 'ember-1.13',
dependencies: {
'ember': '~1.13.13'
}
bower: {
dependencies: {
ember: '~1.13.0',
'ember-cli-shims': '0.0.6',
'ember-data': '~1.13.0',
},
},
npm: {
devDependencies: {
'ember-cli-shims': null,
'ember-data': '~1.13.0',
'ember-source': null,
},
},
},
{
name: 'ember-lts-2.4',
@@ -26,15 +37,31 @@ module.exports = {
},
{
name: '2.6',
dependencies: {
'ember': '~2.6.0'
}
bower: {
dependencies: {
ember: '~2.6.0',
'ember-cli-shims': null,
},
},
npm: {
devDependencies: {
'ember-source': null,
},
},
},
{
name: '2.7',
dependencies: {
'ember': '~2.7.0'
}
bower: {
dependencies: {
ember: '~2.7.0',
'ember-cli-shims': null,
},
},
npm: {
devDependencies: {
'ember-source': null,
},
},
},
{
name: 'ember-lts-2.8',