Skip to content

Commit

Permalink
chore(:book:): dont point TypeDoc at test suite
Browse files Browse the repository at this point in the history
AFFECTS PACKAGES:
@esri/arcgis-rest-items

ISSUES CLOSED: #347
  • Loading branch information
jgravois committed Oct 8, 2018
1 parent b0c81c6 commit 532cc33
Show file tree
Hide file tree
Showing 4 changed files with 63 additions and 56 deletions.
4 changes: 3 additions & 1 deletion docs/build-typedoc.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const spawn = require("cross-spawn");
const { join, resolve } = require("path");
const { join } = require("path");
const { readFile, writeFile } = require("fs");
const _ = require("lodash");
const OUTPUT = join(process.cwd(), "docs", "src", `typedoc.json`);
Expand All @@ -17,6 +17,8 @@ const md = new MarkdownIt();
[
"-json",
OUTPUT,
"--exclude",
"**/*test.ts",
"--ignoreCompilerErrors",
"--module",
"common",
Expand Down
109 changes: 57 additions & 52 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
"tslint": "^5.8.0",
"tslint-config-prettier": "^1.6.0",
"tslint-config-standard": "^6.0.1",
"typedoc": "^0.8.0",
"typedoc": "^0.12.0",
"typescript": "^3.0.0"
},
"dependencies": {
Expand Down
4 changes: 2 additions & 2 deletions packages/arcgis-rest-items/src/update.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ export interface IItemMoveRequestOptions extends IItemCrudRequestOptions {
}

/**
* Update an Item
* Update an Item. See the [REST Documentation](https://developers.arcgis.com/rest/users-groups-and-items/update-item.htm) for more information.
*
* * ```js
* ```js
* import { updateItem } from '@esri/arcgis-rest-items';
*
* updateItem({
Expand Down

0 comments on commit 532cc33

Please sign in to comment.