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

fix for webpack 4 and issue with the webpack callback #12

Merged
merged 10 commits into from
Mar 1, 2019
Prev Previous commit
Next Next commit
fix for webpack 4
  • Loading branch information
svenkoslowski committed Feb 6, 2019
commit 806b7c321c2edf82187439c529fccc7dd81902f6
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"node": ">=4"
},
"peerDependencies": {
"webpack": "2 || 3"
"webpack": "4"
},
"dependencies": {
"fs-extra": "^5.0.0",
Expand Down
2 changes: 1 addition & 1 deletion src/webpack-mjml-store.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict';

const mjml2html = require('mjml').default;
const mjml2html = require('mjml');
const glob = require('glob');
const fs = require('fs-extra');
const _ = require('lodash');
Expand Down