Skip to content

Commit

Permalink
fix: removed postinstall condition
Browse files Browse the repository at this point in the history
fix: removed postinstall condition
  • Loading branch information
matteobertoldo authored Jun 16, 2022
2 parents f412c08 + 61e4a17 commit beeeda3
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
"lint:js": "eslint .",
"lint:js:fix": "eslint . --fix",
"parse": "npm run format && npm run lint",
"postinstall": "husky install",
"semantic-release": "semantic-release",
"test": "npm run parse"
},
Expand Down
3 changes: 1 addition & 2 deletions src/webpack-mjml-store.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const defaultOptions = {

/**
* @param inputPath - {String}
* @param options
* @param options - {Object}
* @constructor
*/
const WebpackMjmlStore = function (inputPath, options) {
Expand Down Expand Up @@ -126,7 +126,6 @@ WebpackMjmlStore.prototype.ensureFileExists = function (file, contents) {
if (err) {
throw err;
}

resolve(contents);
});
});
Expand Down

0 comments on commit beeeda3

Please sign in to comment.