Skip to content
This repository was archived by the owner on Sep 13, 2021. It is now read-only.

Commit 2a4bbb7

Browse files
committed
Use dist instead of bin dir.
1 parent e96dc5c commit 2a4bbb7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22
"name": "@visualon/camljs",
33
"version": "2.7.0-rc",
44
"description": "Simplifies creation of SharePoint CAML queries for client-side scripts. Can be used with either SharePoint Client Object Model or SPServices.",
5-
"main": "./bin/camljs.js",
6-
"types":"./bin/camljs.d.ts",
5+
"main": "./dist/camljs.js",
6+
"types":"./dist/camljs.d.ts",
77
"scripts": {
88
"start": "tsc -w --pretty",
99
"tsc": "tsc",
1010
"tsc:w": "tsc -w",
1111
"prepublish": "tsc"
1212
},
1313
"files": [
14-
"./bin"
14+
"./dist"
1515
],
1616
"repository": {
1717
"type": "git",

tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"module": "amd",
55
"sourceMap": true,
66
"inlineSources": true,
7-
"outDir": "bin",
7+
"outDir": "dist",
88
"rootDir": "CamlJs",
99
"forceConsistentCasingInFileNames": true,
1010
"noResolve": false,

0 commit comments

Comments
 (0)