Shopify / slate

Slate is a toolkit for developing Shopify themes. It's designed to assist your workflow and speed up the process of developing, testing, and deploying themes.
https://shopify.github.io/slate
MIT License
1.28k stars 364 forks source link

Fix installation step #1036

Closed cjayyy closed 4 years ago

cjayyy commented 5 years ago

In part where we connect slate-section-plugin to the Webpack there are more curly brackets than needed.

module.exports = {
  plugins: [new SlateSectionsPlugin({slateSectionsOptions})],
};

should be:

module.exports = {
  plugins: [new SlateSectionsPlugin(slateSectionsOptions)],
};

This repo is currently on low maintenance. See README for details

What are you trying to accomplish with this PR?

Please provide a link to the associated GitHub issue.

No issue relevant.

Checklist

For contributors:

For maintainers: