From 7bc08fabf1ed62d0ac1f3fe5925c5dd4f76cc318 Mon Sep 17 00:00:00 2001 From: Janos Dobronszki Date: Wed, 12 May 2021 20:48:23 +0100 Subject: [PATCH] [WIP] Moving dist to top level (#67) * Moving dist to top level * F * Test * Test * Revert test change --- clients/ts/package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/clients/ts/package.json b/clients/ts/package.json index 3bfa913..2248ede 100644 --- a/clients/ts/package.json +++ b/clients/ts/package.json @@ -2,8 +2,8 @@ "name": "@micro/services", "version": "1.0.1", "description": "", - "main": "dist/index.js", - "types": "dist/index.d.ts", + "main": "index.js", + "types": "index.d.ts", "repository": { "type": "git", "url": "https://github.com/micro/services" @@ -12,7 +12,7 @@ "license": "ISC", "scripts": { "build": "tsc", - "prepare": "tsc", + "prepare": "tsc && cp -R ./dist/* .", "test": "echo \"Error: no test specified\" && exit 1" }, "devDependencies": {