Skip to content

Commit

Permalink
Change cli.cjs to cli.js
Browse files Browse the repository at this point in the history
  • Loading branch information
brettimus committed Jun 5, 2024
1 parent 1cb4994 commit e473d66
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions api/bin/cli.cjs → api/bin/cli.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env node

const { execSync } = require("node:child_process");
const path = require("node:path");
import { execSync } from "node:child_process";
import path from "node:path";

const args = process.argv.slice(2);
const script = args[0];
Expand Down
4 changes: 2 additions & 2 deletions api/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.0.6",
"version": "0.0.7",
"name": "@mizu-dev/studio",
"description": "Local development debugging interface for Hono apps",
"author": "Fiberplane<[email protected]>",
Expand All @@ -20,7 +20,7 @@
"license": "UNLICENSED",
"keywords": ["hono", "local", "debugging"],
"bin": {
"mizu": "./bin/cli.cjs"
"mizu": "./bin/cli.js"
},
"dependencies": {
"@hono/node-server": "^1.11.1",
Expand Down

0 comments on commit e473d66

Please sign in to comment.