Skip to content

Commit

Permalink
chore(cli): bump sass-loader version
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeed committed Apr 16, 2020
1 parent 248e134 commit e0c0a30
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
6 changes: 3 additions & 3 deletions packages/cli/lib/init.js
Expand Up @@ -16,10 +16,10 @@ let presets = ['Preact', 'React', 'Svelte', 'Vue'];
const versions = {
'eslint': '^6.8.0',
'ganalytics': '^3.0.0',
'less': '^3.8.0',
'less': '^3.11.0',
'less-loader': '^5.0.0',
'navaid': '^1.0.0',
'node-sass': '^4.9.0',
'node-sass': '^4.13.0',
'preact': '^8.3.0',
'preact-router': '^2.6.0',
'preact-compat': '^3.18.0',
Expand All @@ -29,7 +29,7 @@ const versions = {
'react-loadable': '^5.5.0',
'react-router': '^4.3.0',
'react-router-dom': '^4.3.0',
'sass-loader': '^7.1.0',
'sass-loader': '^8.0.0',
'sirv-cli': '^0.4.0',
'stylus': '^0.54.0',
'stylus-loader': '^3.0.0',
Expand Down
5 changes: 4 additions & 1 deletion packages/core/webpack/style.js
Expand Up @@ -32,7 +32,10 @@ module.exports = function (config, opts) {
scss: fn('sass', config.sass),
sass: fn('sass', {
...config.sass,
indentedSyntax: true
sassOptions: {
...config.sassOptions,
indentedSyntax: true
}
}),
};

Expand Down

0 comments on commit e0c0a30

Please sign in to comment.