Skip to content

Commit

Permalink
fix: fix export
Browse files Browse the repository at this point in the history
  • Loading branch information
Julien Bouquillon committed Jan 15, 2024
1 parent b037433 commit 34ad922
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 19 deletions.
22 changes: 5 additions & 17 deletions init/dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -24842,6 +24842,7 @@ async function run() {
if (require.main === require.cache[eval('__filename')]) {
run();
}

module.exports = {
run,
getOutputs,
Expand All @@ -24854,9 +24855,8 @@ module.exports = {
/***/ }),

/***/ 1764:
/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
/***/ ((module) => {

/* module decorator */ module = __nccwpck_require__.nmd(module);
// need write API key to create missing urls

const apiKey = process.env.UPDOWNIO_API_KEY;
Expand Down Expand Up @@ -24924,7 +24924,7 @@ const createMissingUpdownEntries = async (dashlordConfig) => {
});
};

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


/***/ }),
Expand Down Expand Up @@ -33417,8 +33417,8 @@ module.exports = __nccwpck_require__(4083).YAML
/******/ }
/******/ // Create a new module (and put it into the cache)
/******/ var module = __webpack_module_cache__[moduleId] = {
/******/ id: moduleId,
/******/ loaded: false,
/******/ // no module.id needed
/******/ // no module.loaded needed
/******/ exports: {}
/******/ };
/******/
Expand All @@ -33431,23 +33431,11 @@ module.exports = __nccwpck_require__(4083).YAML
/******/ if(threw) delete __webpack_module_cache__[moduleId];
/******/ }
/******/
/******/ // Flag the module as loaded
/******/ module.loaded = true;
/******/
/******/ // Return the exports of the module
/******/ return module.exports;
/******/ }
/******/
/************************************************************************/
/******/ /* webpack/runtime/node module decorator */
/******/ (() => {
/******/ __nccwpck_require__.nmd = (module) => {
/******/ module.paths = [];
/******/ if (!module.children) module.children = [];
/******/ return module;
/******/ };
/******/ })();
/******/
/******/ /* webpack/runtime/compat */
/******/
/******/ if (typeof __nccwpck_require__ !== 'undefined') __nccwpck_require__.ab = __dirname + "/";
Expand Down
2 changes: 1 addition & 1 deletion init/dist/index.js.map

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions init/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ async function run() {
if (require.main === module) {
run();
}

module.exports = {
run,
getOutputs,
Expand Down
2 changes: 1 addition & 1 deletion init/src/updown.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,4 +65,4 @@ const createMissingUpdownEntries = async (dashlordConfig) => {
});
};

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

0 comments on commit 34ad922

Please sign in to comment.