Skip to content

Commit

Permalink
fix: avoid default export
Browse files Browse the repository at this point in the history
  • Loading branch information
agerard-godaddy committed Nov 26, 2024
1 parent 01fef24 commit bca7b47
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/gasket-plugin-https-proxy/lib/actions.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ export async function startProxyServer(gasket) {
logger.info(`Proxy server started: ${protocol}://${hostname}:${port}`);
}

export default {
export const actions = {
startProxyServer
};
2 changes: 1 addition & 1 deletion packages/gasket-plugin-https-proxy/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/// <reference types="@gasket/plugin-metadata" />

import create from './create.js';
import actions from './actions.js';
import { actions } from './actions.js';
import { createRequire } from 'module';
const require = createRequire(import.meta.url);
const { name, version, description } = require('../package.json');
Expand Down

0 comments on commit bca7b47

Please sign in to comment.