Skip to content

Commit 74c563c

Browse files
author
Martynas Žilinskas
authored
Feature: Dependency upgrade (#32)
1 parent 2463a88 commit 74c563c

File tree

4 files changed

+27
-54
lines changed

4 files changed

+27
-54
lines changed

common/config/rush/npm-shrinkwrap.json

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

packages/ts-docs-gen/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,18 +20,18 @@
2020
"@types/yargs": "^10.0.1",
2121
"fs-extra": "^5.0.0",
2222
"simplr-logger": "^1.0.1",
23-
"ts-extractor": "^4.0.0-beta.8",
23+
"ts-extractor": "^4.0.0-rc.1",
2424
"typescript": "^2.6.2",
2525
"yargs": "^11.0.0"
2626
},
2727
"devDependencies": {
2828
"@simplrjs/test-generator-cli": "^0.1.3",
29-
"@types/jest": "^22.1.0",
29+
"@types/jest": "^22.1.1",
3030
"@types/sinon": "^4.1.3",
3131
"jest": "^22.1.4",
3232
"simplr-tslint": "0.0.1",
33-
"sinon": "^4.2.1",
34-
"ts-jest": "^22.0.1",
33+
"sinon": "^4.2.2",
34+
"ts-jest": "^22.0.2",
3535
"tslint": "^5.9.1"
3636
},
3737
"bin": "./dist/cli/launcher.js",

packages/ts-docs-gen/src/cli/arguments.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ export interface CliArguments extends yargs.Arguments {
55
output?: string;
66
entryFile: string[];
77
plugin?: string[];
8+
exclude?: string[];
89
}
910

1011
/**
@@ -29,6 +30,10 @@ export const ArgsHandler = yargs
2930
describe: "Entry file or files to generate documentation from.",
3031
type: "array"
3132
})
33+
.option("exclude", {
34+
describe: "File locations that should not be included generated documentation.",
35+
type: "array"
36+
})
3237
.option("output", {
3338
describe: "Documentation output directory.",
3439
type: "string"

packages/ts-docs-gen/tests/cases/__tests__/__snapshots__/simple-project-4.test.ts.snap

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

0 commit comments

Comments
 (0)