From 2a4bbb7fb167dd00f5867c46bc4d55f41078e0eb Mon Sep 17 00:00:00 2001 From: Michael Kriese Date: Thu, 25 Jan 2018 15:37:46 +0100 Subject: [PATCH] Use dist instead of bin dir. --- package.json | 6 +++--- tsconfig.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index d4b4a7a..2a15352 100644 --- a/package.json +++ b/package.json @@ -2,8 +2,8 @@ "name": "@visualon/camljs", "version": "2.7.0-rc", "description": "Simplifies creation of SharePoint CAML queries for client-side scripts. Can be used with either SharePoint Client Object Model or SPServices.", - "main": "./bin/camljs.js", - "types":"./bin/camljs.d.ts", + "main": "./dist/camljs.js", + "types":"./dist/camljs.d.ts", "scripts": { "start": "tsc -w --pretty", "tsc": "tsc", @@ -11,7 +11,7 @@ "prepublish": "tsc" }, "files": [ - "./bin" + "./dist" ], "repository": { "type": "git", diff --git a/tsconfig.json b/tsconfig.json index 822fadf..88b5ec3 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -4,7 +4,7 @@ "module": "amd", "sourceMap": true, "inlineSources": true, - "outDir": "bin", + "outDir": "dist", "rootDir": "CamlJs", "forceConsistentCasingInFileNames": true, "noResolve": false,