Skip to content

Commit

Permalink
feat: add dev script for dashmate to run without build with debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
shumkov committed Jun 30, 2024
1 parent c7adc94 commit 1561c9c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/dashmate/bin/dev.cmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
@echo off

node "%~dp0\dev" %*
9 changes: 9 additions & 0 deletions packages/dashmate/bin/dev.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/usr/bin/env node

import { execute } from '@oclif/core';

async function run() {
await execute({ dir: import.meta.url, development: true });
}

await run();

0 comments on commit 1561c9c

Please sign in to comment.