-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make in-viewport compatible to ember-modifier v4 (#306)
* make in-viewport compatible to ember-modifier v4 * resolve conversation * add missing scenarious * add missing scenarious * fix-lint * remove jquery scenario from ember-try and scenario * make scenario sync with CI * upgrade @embroider/test-setup * resolve conversation regarding packages * install dependencies with npm older version * revert package-lock.json and install dependencies * remove line to make ci work * add embroider macros to version 4 scneario dependancy * add @embroid/core @embroider/compat @embroider/webpack as dev dpcy * resolve could find module issue * revert change in service Co-authored-by: Andranik Tsaturyan <[email protected]>
- Loading branch information
Showing
5 changed files
with
2,057 additions
and
290 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -58,9 +58,12 @@ jobs: | |
- ember-beta | ||
- ember-canary | ||
- ember-classic | ||
- ember-default-with-jquery | ||
- embroider-safe | ||
- embroider-optimized | ||
- ember-modifier@2 | ||
- [email protected] | ||
- [email protected] | ||
- ember-modifier@^4.0.0-beta.1 | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -63,15 +63,34 @@ module.exports = async function () { | |
}, | ||
}, | ||
{ | ||
name: 'ember-default-with-jquery', | ||
env: { | ||
EMBER_OPTIONAL_FEATURES: JSON.stringify({ | ||
'jquery-integration': true, | ||
}), | ||
name: 'ember-modifier@2', | ||
npm: { | ||
dependencies: { | ||
'ember-modifier': '^2.1.2', | ||
}, | ||
}, | ||
}, | ||
{ | ||
name: '[email protected]', | ||
npm: { | ||
devDependencies: { | ||
'@ember/jquery': '^1.1.0', | ||
dependencies: { | ||
'ember-modifier': '^3.1.0', | ||
}, | ||
}, | ||
}, | ||
{ | ||
name: '[email protected]', | ||
npm: { | ||
dependencies: { | ||
'ember-modifier': '^3.2.7', | ||
}, | ||
}, | ||
}, | ||
{ | ||
name: 'ember-modifier@^4.0.0-beta.1', | ||
npm: { | ||
dependencies: { | ||
'ember-modifier': '^4.0.0-beta.1', | ||
}, | ||
}, | ||
}, | ||
|
Oops, something went wrong.