From 3171ba4c3ff4046aaca0d70321f1dfec4c0728bb Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Wed, 23 May 2018 16:45:01 -0400 Subject: Add special deno module to public api --- Makefile | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index ae67b1c37..1a31e3c08 100644 --- a/Makefile +++ b/Makefile @@ -1,20 +1,25 @@ TS_FILES = \ - tsconfig.json \ dispatch.ts \ + globals.ts \ main.ts \ msg.pb.d.ts \ msg.pb.js \ os.ts \ runtime.ts \ + test.js \ timers.ts \ + tsconfig.json \ + types.ts \ url.js \ util.ts \ - v8_source_maps.ts + v8_source_maps.ts \ + v8worker2.d.ts GO_FILES = \ assets.go \ deno_dir.go \ deno_dir_test.go \ + echo.go \ dispatch.go \ main.go \ msg.pb.go \ @@ -23,11 +28,12 @@ GO_FILES = \ timers.go \ util.go -deno: $(GO_FILES) +deno: msg.pb.go $(GO_FILES) go build -o deno assets.go: dist/main.js cp node_modules/typescript/lib/lib.d.ts dist/ + cp deno.d.ts dist/ go-bindata -pkg main -o assets.go dist/ msg.pb.go: msg.proto -- cgit v1.2.3