From 9b957651b471b4e2c76575b8f9d76cf8058dd755 Mon Sep 17 00:00:00 2001 From: Titor Date: Thu, 25 Feb 2021 18:10:27 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8DMac=E4=B8=8B=E7=9A=84?= =?UTF-8?q?=E5=91=BD=E4=BB=A4=E8=A1=8C=E6=B3=A8=E9=87=8A=E5=90=AF=E5=8A=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bin/index.js | 4 ++-- bin/index.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/index.js b/bin/index.js index 3797494..2be7a27 100644 --- a/bin/index.js +++ b/bin/index.js @@ -1,5 +1,5 @@ -#! node +#!/usr/bin/env node "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); -var koa_1 = require("./koa"); +const koa_1 = require("./koa"); new koa_1.Koa(); diff --git a/bin/index.ts b/bin/index.ts index 26de368..2126a12 100644 --- a/bin/index.ts +++ b/bin/index.ts @@ -1,4 +1,4 @@ -#! node -import { Koa } from "./koa"; +#!/usr/bin/env node +import { Koa } from "./koa"; new Koa()