Skip to content
This repository was archived by the owner on Jul 19, 2021. It is now read-only.

Commit

Permalink
Fix default slate-cssvar-loader path configs
Browse files Browse the repository at this point in the history
  • Loading branch information
mmorissette committed Apr 19, 2018
1 parent 232e976 commit fcb3382
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/slate-cssvar-loader/slate-cssvar-loader.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
const path = require('path');
const slateConfig = require('@shopify/slate-config');

module.exports = slateConfig.generate({
Expand All @@ -11,7 +12,7 @@ module.exports = slateConfig.generate({
},
{
id: 'cssVarLoaderLiquidPath',
default: ['src/snippets/css-variables.liquid'],
default: [path.resolve('src/snippets/css-variables.liquid')],
description:
'An array of string paths to liquid files that associate css variables to liquid variables',
type: 'array',
Expand Down

0 comments on commit fcb3382

Please sign in to comment.