feat(server): move all cli commands codebase to be TS based.

This commit is contained in:
a.bouhuolia
2023-02-13 20:47:09 +02:00
parent 7e7ee24109
commit 72c1685fa6
8 changed files with 109 additions and 130 deletions

View File

@@ -0,0 +1,11 @@
const { getCommonWebpackOptions } = require('./webpack.common');
const inputEntry = './src/commands/index.ts';
const outputDir = '../build';
const outputFilename = 'commands.js';
module.exports = getCommonWebpackOptions({
inputEntry,
outputDir,
outputFilename,
});