Skip to content

Commit

Permalink
Merge pull request #739 from ember-cli/mixonic/allow-console
Browse files Browse the repository at this point in the history
  • Loading branch information
kategengler authored Dec 5, 2021
2 parents 49d9e0f + bd67f24 commit 13284d4
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ jobs:
- ember-lts-3.8
- ember-lts-3.20
- ember-lts-3.24
- ember-lts-3.28
- ember-release
- ember-beta
- ember-canary
Expand Down
17 changes: 17 additions & 0 deletions config/ember-try.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,23 @@ module.exports = async function () {
},
},
},
{
name: 'ember-lts-3.28',
npm: {
devDependencies: {
'ember-source': '~3.28.0',
},
},
},
{
name: 'ember-release',
npm: {
devDependencies: {
'ember-source': await getChannelURL('release'),
},
ember: {
edition: 'octane',
},
},
},
{
Expand All @@ -45,6 +56,9 @@ module.exports = async function () {
devDependencies: {
'ember-source': await getChannelURL('beta'),
},
ember: {
edition: 'octane',
},
},
},
{
Expand All @@ -53,6 +67,9 @@ module.exports = async function () {
devDependencies: {
'ember-source': await getChannelURL('canary'),
},
ember: {
edition: 'octane',
},
},
},
{
Expand Down
1 change: 1 addition & 0 deletions lib/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,7 @@ function getTemplateCompiler(templateCompilerPath, EmberENV = {}) {

let sandbox = {
EmberENV: clonedEmberENV,
console,

// Older versions of ember-template-compiler (up until [email protected])
// eagerly access `setTimeout` without checking via `typeof` first
Expand Down

0 comments on commit 13284d4

Please sign in to comment.