Skip to content

Commit

Permalink
Use reference sass in aux script
Browse files Browse the repository at this point in the history
  • Loading branch information
cibernox committed Nov 26, 2021
1 parent 3c395cf commit 039071c
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 25,010 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Expand Up @@ -75,7 +75,7 @@ jobs:
- ember-lts-3.16
- ember-lts-3.20
- ember-release
# - ember-beta
- ember-beta
# - ember-canary
- node-tests
# - embroider
Expand Down
1 change: 1 addition & 0 deletions .nvmrc
@@ -0,0 +1 @@
16
2 changes: 1 addition & 1 deletion compile-css.js
@@ -1,4 +1,4 @@
var sass = require('node-sass'); // eslint-disable-line
var sass = require('sass'); // eslint-disable-line
var fs = require('fs');
var path = require('path');

Expand Down
32 changes: 16 additions & 16 deletions config/ember-try.js
Expand Up @@ -29,22 +29,22 @@ module.exports = async function() {
}
}
},
// {
// name: 'ember-beta',
// npm: {
// devDependencies: {
// 'ember-source': await getChannelURL('beta')
// }
// }
// },
// {
// name: 'ember-canary',
// npm: {
// devDependencies: {
// 'ember-source': await getChannelURL('canary')
// }
// }
// },
{
name: 'ember-beta',
npm: {
devDependencies: {
'ember-source': await getChannelURL('beta')
}
}
},
{
name: 'ember-canary',
npm: {
devDependencies: {
'ember-source': await getChannelURL('canary')
}
}
},
{
name: 'node-tests',
command: 'npm run nodetest'
Expand Down

0 comments on commit 039071c

Please sign in to comment.