forked from Lomray-Software/microservices-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
executable file
·26 lines (24 loc) · 942 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/usr/bin/env node
import { program } from './src/command.js';
// import all commands
import './src/commands/build.js';
import './src/commands/change-feature.js';
import './src/commands/create-ms.js';
import './src/commands/detect-dockerfile.js';
import './src/commands/extend-ms.js';
import './src/commands/github-changed-microservices.js';
import './src/commands/global-feature.js';
import './src/commands/global-install.js';
import './src/commands/global-update.js';
import './src/commands/init-project.js';
import './src/commands/lint.js';
import './src/commands/lint-staged.js';
import './src/commands/package-version.js';
import './src/commands/patch-package-version.js';
import './src/commands/permissions.js';
import './src/commands/semantic-release.js';
import './src/commands/test.js';
import './src/commands/ts-check.js';
import './src/commands/update-env.js';
import './src/commands/get-microservices-list.js'
program.parse();