Files
game-cards-poker-design/frontend/node_modules/fabric/scripts/buildReporter.mjs
Poker Design Developer 5dbcebf7a2 Fix frontend blank page issues
- Fix router import path in main.js
- Handle Django REST Framework pagination format in API calls
- Add getTemplates function to project API
- Restart frontend development server
2026-05-31 18:40:56 +08:00

16 lines
320 B
JavaScript

/**
* This file is used by `./build` to create `cli_output/build-lock.json`
*/
import { Command } from 'commander';
import { report } from './buildLock.mjs';
const program = new Command();
program
.command('report <type>', { isDefault: true })
.action((type) => {
report(type);
})
.parse(process.argv);