Skip to content
This repository has been archived by the owner on Mar 4, 2024. It is now read-only.

Commit

Permalink
Use right variable names
Browse files Browse the repository at this point in the history
  • Loading branch information
jordikroon authored Dec 1, 2017
1 parent 80582bb commit 6593d2c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ npm install --save-dev tde-webpack-mjml-plugin
In your `webpack.config.js`

```javascript
var ManifestPlugin = require('tde-webpack-mjml-plugin');
var MjmlPlugin = require('tde-webpack-mjml-plugin');

module.exports = {
// ...
plugins: [
new MjmlStore(paths.MJML, {
new MjmlPlugin(paths.MJML, {
extension: '.twig',
outputPath: 'path/to/mjml'
}),
Expand All @@ -33,7 +33,7 @@ module.exports = {

module.exports = {
plugins: [
new MjmlStore(inputPath, {
new MjmlPlugin(inputPath, {
extension: options.extension,
outputPath: options.outputPath
}),
Expand Down

0 comments on commit 6593d2c

Please sign in to comment.