Skip to content

Commit c55d61a

Browse files
authored
docs(lib): add api-extractor to lib-dynamodb and lib-storage (#4749)
1 parent 20cda3f commit c55d61a

File tree

5 files changed

+20
-0
lines changed

5 files changed

+20
-0
lines changed

Diff for: api-extractor.lib.json

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"extends": "./api-extractor.json",
3+
"docModel": {
4+
"apiJsonFilePath": "./temp-lib/<unscopedPackageName>.api.json"
5+
},
6+
"apiReport": {
7+
"reportFolder": "./temp-lib/",
8+
"reportTempFolder": "./temp-lib/"
9+
}
10+
}

Diff for: lib/lib-dynamodb/api-extractor.json

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"extends": "../../api-extractor.lib.json",
3+
"mainEntryPointFilePath": "./dist-types/index.d.ts"
4+
}

Diff for: lib/lib-dynamodb/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
"build:types": "tsc -p tsconfig.types.json",
1414
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
1515
"clean": "rimraf ./dist-* && rimraf *.tsbuildinfo",
16+
"extract:docs": "api-extractor run --local",
1617
"test": "jest"
1718
},
1819
"engines": {

Diff for: lib/lib-storage/api-extractor.json

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"extends": "../../api-extractor.lib.json",
3+
"mainEntryPointFilePath": "./dist-types/index.d.ts"
4+
}

Diff for: lib/lib-storage/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
"build:types": "tsc -p tsconfig.types.json",
1414
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
1515
"clean": "rimraf ./dist-* && rimraf *.tsbuildinfo",
16+
"extract:docs": "api-extractor run --local",
1617
"test": "jest"
1718
},
1819
"engines": {

0 commit comments

Comments
 (0)