Skip to content

Commit 63ed77e

Browse files
committed
docs(typedoc): logical modules for typedoc instead of file based
1 parent 424e0ab commit 63ed77e

File tree

172 files changed

+880
-111
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

172 files changed

+880
-111
lines changed

doc-intro.md

Whitespace-only changes.

package-lock.json

Lines changed: 103 additions & 97 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"scripts": {
2929
"prebuild": "rimraf dist",
3030
"build": "tsc --outDir ./dist/_esm2015/ && tsc --outDir ./dist/_esm5/ --target es5 && tsc --outDir ./dist/ --module commonjs",
31-
"build:docs": "typedoc --out dist/docs --target es6 --theme minimal",
31+
"build:docs": "rimraf ./dist/docs && typedoc --out dist/docs --readme ./doc-intro.md --target es6 --hideGenerator --theme minimal --excludePrivate --stripInternal",
3232
"check-snippets": "npx tsc --outDir ./dist-snippets --project ./snippets/tsconfig.json && rimraf dist-snippets",
3333
"commity": "commit",
3434
"deploy-docs": "ts-node tools/gh-pages-publish",
@@ -73,6 +73,7 @@
7373
"tslint-config-prettier": "^1.17.0",
7474
"tsutils": "^3.6.0",
7575
"typedoc": "^0.13.0",
76+
"typedoc-plugin-external-module-name": "^2.0.0",
7677
"typescript": ">=2.9.1",
7778
"uuid": "^3.3.2"
7879
},

src/config/config.type.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
/**
2+
* @module dynamo-easy
3+
*/
14
import { SessionValidityEnsurer } from '../dynamo/session-validity-ensurer.type'
25
import { TableNameResolver } from '../dynamo/table-name-resolver.type'
36
import { LogReceiver } from '../logger/log-receiver.type'

src/config/dynamo-easy-config.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
/**
2+
* @module dynamo-easy
3+
*/
14
import { DEFAULT_SESSION_VALIDITY_ENSURER } from '../dynamo/default-session-validity-ensurer.const'
25
import { DEFAULT_TABLE_NAME_RESOLVER } from '../dynamo/default-table-name-resolver.const'
36
import { DEFAULT_LOG_RECEIVER } from '../logger/default-log-receiver.const'

src/config/public-api.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
/**
2+
* @module dynamo-easy
3+
*/
14
export * from './config.type'
25
export * from './update-config.function'
36

src/config/update-config.function.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
/**
2+
* @module dynamo-easy
3+
*/
14
import { Config } from './config.type'
25
import { dynamoEasyConfig } from './dynamo-easy-config'
36

src/decorator/impl/collection/collection-property-data.model.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
/**
2+
* @module decorators
3+
*/
14
import { MapperForType } from '../../../mapper/for-type/base.mapper'
25
import { BinaryAttribute, NumberAttribute, StringAttribute } from '../../../mapper/type/attribute.type'
36
import { ModelConstructor } from '../../../model/model-constructor'

src/decorator/impl/collection/collection-property.decorator.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
/**
2+
* @module decorators
3+
*/
14
import { MapperForType } from '../../../mapper/for-type/base.mapper'
25
import { BinaryAttribute, NumberAttribute, StringAttribute } from '../../../mapper/type/attribute.type'
36
import {

src/decorator/impl/date/date-property-data.model.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
/**
2+
* @module decorators
3+
*/
14
/**
25
* Option interface for @DateProperty decorator
36
*/

0 commit comments

Comments
 (0)