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

Commit

Permalink
Use dist instead of bin dir.
Browse files Browse the repository at this point in the history
  • Loading branch information
viceice committed Jan 25, 2018
1 parent e96dc5c commit 2a4bbb7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@
"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",
"tsc:w": "tsc -w",
"prepublish": "tsc"
},
"files": [
"./bin"
"./dist"
],
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"module": "amd",
"sourceMap": true,
"inlineSources": true,
"outDir": "bin",
"outDir": "dist",
"rootDir": "CamlJs",
"forceConsistentCasingInFileNames": true,
"noResolve": false,
Expand Down

0 comments on commit 2a4bbb7

Please sign in to comment.