-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update dependencies, including ember/ember-cli, bump minor ver…
…sion - updated "r" test/page to use keypress instead of input event - removed unnecessary addon dependency: ember-promise-helpers - updated github token for the concurrency test/demo - removed usage of deprecated query-params helper in favor of hash - added check in transition-to helper for objectLiteral queryParams - fixed deprecation warnings (no implicit this) in tests - bump version to 0.8.0
- Loading branch information
Showing
16 changed files
with
4,545 additions
and
2,148 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 |
---|---|---|
|
@@ -37,11 +37,9 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
# test addons with the same minimum supported node version as Ember CLI | ||
node-version: "10.x" | ||
node-version: "12.x" | ||
- name: Tests | ||
env: | ||
EMBER_TRY_SCENARIO: ${{ matrix.ember }} | ||
run: | | ||
npm ci | ||
npm run lint | ||
npm run test:ember | ||
npx ember try:one ${{ matrix.ember }} |
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 |
---|---|---|
@@ -1,5 +1,10 @@ | ||
'use strict'; | ||
|
||
module.exports = { | ||
extends: 'octane' | ||
extends: 'octane', | ||
rules: { | ||
'no-implicit-this': { | ||
allow: ['shhh-helper'] | ||
} | ||
} | ||
}; |
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 |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
## Linting | ||
|
||
* `npm run lint` | ||
* `npm run lint:js -- --fix` | ||
* `npm run lint:fix` | ||
|
||
## Running tests | ||
|
||
|
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
Oops, something went wrong.