-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update typescript to latest * Update typedoc to almost-latest MV * Update typedoc config to account for all the breaking changes * Swap typedoc plugins to modern ones that still work and do approximately what we had plugins doing before. * Rework how events are documented * Move some private browser mqtt connection functionality to the bottom of the class definition * Move some problematic type definitions that used CrtError (which is defined in browser/native) down to browser/native * Expose checksums as an export * Fix some messy type errors due to stricter checking in 4.x * Update sample package.jsons
- Loading branch information
1 parent
66312a0
commit 816cc24
Showing
38 changed files
with
528 additions
and
598 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,32 @@ | ||
{ | ||
"mode": "modules", | ||
"inputFiles": "lib/browser.ts", | ||
"tsconfig": "tsconfig.browser.json", | ||
"out": "docs/browser", | ||
"includeDeclarations": true, | ||
"entryPoints": [ | ||
"../lib/browser/auth.ts", | ||
"../lib/browser/aws_iot.ts", | ||
"../lib/browser/crypto.ts", | ||
"../lib/browser/error.ts", | ||
"../lib/browser/http.ts", | ||
"../lib/browser/io.ts", | ||
"../lib/browser/mqtt.ts", | ||
"../lib/browser/ws.ts", | ||
"../lib/common/auth.ts", | ||
"../lib/common/crypto.ts", | ||
"../lib/common/event.ts", | ||
"../lib/common/http.ts", | ||
"../lib/common/io.ts", | ||
"../lib/common/mqtt.ts" | ||
], | ||
"tsconfig": "../tsconfig.browser.json", | ||
"out": "../docs/browser", | ||
"excludeExternals": true, | ||
"excludeNotExported": true, | ||
"excludePrivate": true, | ||
"stripInternal": true, | ||
"excludeInternal": true, | ||
"excludeProtected": true, | ||
"disableSources": true, | ||
"listInvalidSymbolLinks": true | ||
"categorizeByGroup": true, | ||
"validation": { | ||
"invalidLink" : true | ||
}, | ||
"treatWarningsAsErrors" : true, | ||
"mergeModulesMergeMode": "module" | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,33 @@ | ||
{ | ||
"mode": "modules", | ||
"inputFiles": ["lib/index.ts", "lib/native/*.ts", "lib/common/*.ts"], | ||
"exclude": ["lib/native/binding.js", "lib/browser", "lib/native/*.spec.ts", "lib/common/*.spec.ts"], | ||
"out": "docs/node", | ||
"includeDeclarations": true, | ||
"entryPoints": [ | ||
"../lib/native/auth.ts", | ||
"../lib/native/aws_iot.ts", | ||
"../lib/native/checksums.ts", | ||
"../lib/native/crt.ts", | ||
"../lib/native/crypto.ts", | ||
"../lib/native/error.ts", | ||
"../lib/native/http.ts", | ||
"../lib/native/io.ts", | ||
"../lib/native/mqtt.ts", | ||
"../lib/native/binding.d.ts", | ||
"../lib/common/auth.ts", | ||
"../lib/common/crypto.ts", | ||
"../lib/common/event.ts", | ||
"../lib/common/http.ts", | ||
"../lib/common/mqtt.ts", | ||
"../lib/common/resource_safety.ts" | ||
], | ||
"out": "../docs/node", | ||
"excludeExternals": true, | ||
"excludeNotExported": true, | ||
"excludePrivate": true, | ||
"stripInternal": true, | ||
"excludeInternal": true, | ||
"excludeProtected": true, | ||
"disableSources": true, | ||
"categorizeByGroup": true, | ||
"listInvalidSymbolLinks": true | ||
"validation": { | ||
"invalidLink" : true | ||
}, | ||
"treatWarningsAsErrors" : true, | ||
"mergeModulesMergeMode": "module" | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.