Skip to content

Commit

Permalink
Merge pull request #121 from nickschot/widen-power-select-range
Browse files Browse the repository at this point in the history
Support power-select v4, v5, v6 and v7
  • Loading branch information
nickschot authored Dec 30, 2023
2 parents 5554840 + af31df0 commit e1d6e28
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,10 @@ jobs:
fail-fast: false
matrix:
try-scenario:
- power-select-4
- power-select-5
- power-select-6
- power-select-7
- ember-lts-3.28
- ember-lts-4.4
- ember-lts-4.8
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"ember-concurrency": "^2.3.7",
"ember-get-config": "^2.1.1",
"ember-infinity": "^2.1.1",
"ember-power-select": "^4.0.0"
"ember-power-select": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.21.3",
Expand Down
2 changes: 1 addition & 1 deletion pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

36 changes: 36 additions & 0 deletions tests/dummy/config/ember-try.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,42 @@ module.exports = async function () {
return {
usePnpm: true,
scenarios: [
{
name: 'power-select-4',
npm: {
devDependencies: {
'ember-source': '~3.28.12',
'ember-power-select': '^4.0.0',
},
},
},
{
name: 'power-select-5',
npm: {
devDependencies: {
'ember-source': '~3.28.12',
'ember-power-select': '^5.0.0',
},
},
},
{
name: 'power-select-6',
npm: {
devDependencies: {
'ember-source': '~3.28.12',
'ember-power-select': '^6.0.0',
},
},
},
{
name: 'power-select-7',
npm: {
devDependencies: {
'ember-source': '~3.28.12',
'ember-power-select': '^7.0.0',
},
},
},
{
name: 'ember-lts-3.28',
npm: {
Expand Down

0 comments on commit e1d6e28

Please sign in to comment.