Skip to content

Commit

Permalink
Missing export
Browse files Browse the repository at this point in the history
  • Loading branch information
obany committed Dec 19, 2019
1 parent b629585 commit 2929b48
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 28 deletions.
29 changes: 2 additions & 27 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,6 @@ module.exports =
/******/ // Load entry module and return exports
/******/ return __webpack_require__(31);
/******/ };
/******/ // initialize runtime
/******/ runtime(__webpack_require__);
/******/
/******/ // run startup
/******/ return startup();
Expand Down Expand Up @@ -9454,7 +9452,6 @@ module.exports = require("events");
/***/ 615:
/***/ (function(module, __unusedexports, __webpack_require__) {

/* module decorator */ module = __webpack_require__.nmd(module);
const axios = __webpack_require__(53);
const crypto = __webpack_require__(417);

Expand All @@ -9476,7 +9473,7 @@ async function downloadAndHash(url) {
}
}

module.export = {
module.exports = {
downloadAndHash
};

Expand Down Expand Up @@ -14430,26 +14427,4 @@ function onceStrict (fn) {

/***/ })

/******/ },
/******/ function(__webpack_require__) { // webpackRuntimeModules
/******/ "use strict";
/******/
/******/ /* webpack/runtime/node module decorator */
/******/ !function() {
/******/ __webpack_require__.nmd = function(module) {
/******/ module.paths = [];
/******/ if (!module.children) module.children = [];
/******/ Object.defineProperty(module, 'loaded', {
/******/ enumerable: true,
/******/ get: function() { return module.l; }
/******/ });
/******/ Object.defineProperty(module, 'id', {
/******/ enumerable: true,
/******/ get: function() { return module.i; }
/******/ });
/******/ return module;
/******/ };
/******/ }();
/******/
/******/ }
);
/******/ });
2 changes: 1 addition & 1 deletion src/crypto.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ async function downloadAndHash(url) {
}
}

module.export = {
module.exports = {
downloadAndHash
};

0 comments on commit 2929b48

Please sign in to comment.