mirror of
https://github.com/n8n-io/n8n.git
synced 2026-06-01 01:07:04 +02:00
19 lines
507 B
TypeScript
19 lines
507 B
TypeScript
import Build from './commands/build';
|
|
import CloudSupport from './commands/cloud-support';
|
|
import Dev from './commands/dev';
|
|
import Lint from './commands/lint';
|
|
import New from './commands/new';
|
|
import Prerelease from './commands/prerelease';
|
|
import Release from './commands/release';
|
|
|
|
export const commands = {
|
|
new: New,
|
|
build: Build,
|
|
dev: Dev,
|
|
prerelease: Prerelease,
|
|
release: Release,
|
|
lint: Lint,
|
|
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
'cloud-support': CloudSupport,
|
|
};
|