From 88ab7c88518ee8dd9526a509f061d3af2c4fdb2a Mon Sep 17 00:00:00 2001 From: Matt Webb Date: Wed, 31 Jul 2024 10:47:27 -0700 Subject: [PATCH] chore: add missing `index.ts` The `package.json` has ` "exports": "./dist/index.js"`, but no actual `index.ts` or `index.js` exists. This commit adds that file, in the same format as the one in `plugin-plugins`: https://github.com/oclif/plugin-plugins/blob/main/src/index.ts --- src/index.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/index.ts diff --git a/src/index.ts b/src/index.ts new file mode 100644 index 00000000..4dbbb9f5 --- /dev/null +++ b/src/index.ts @@ -0,0 +1,10 @@ +import CommandsUpdate from './commands/update.js' +import {init} from './hooks/init.js' + +export const commands = { + update: CommandsUpdate, +} + +export const hooks = { + init, +}