Skip to content

Commit a665c5d

Browse files
committed
feat(config): remove config.importPathPrefix warning
1 parent b2d1eab commit a665c5d

File tree

3 files changed

+1
-5
lines changed

3 files changed

+1
-5
lines changed

src/ESDoc.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -176,9 +176,7 @@ export default class ESDoc {
176176
}
177177

178178
static _deprecatedConfig(config) {
179-
if (config.importPathPrefix) {
180-
console.log('[deprecated] config.importPathPrefix is deprecated. use esdoc-importpath-plugin(https://github.com/esdoc/esdoc-importpath-plugin)');
181-
}
179+
// do nothing
182180
}
183181

184182
/**

src/Typedef/typedef.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
* @property {boolean} [debug=false]
1616
* @property {string} [index="./README.md"]
1717
* @property {string} [package="./package.json"]
18-
* @property {string} [importPathPrefix=""]
1918
* @property {string[]} [styles=[]]
2019
* @property {string[]} [scripts=[]]
2120
* @property {{type: string, source: string, includes: string[], excludes: string[]}} test

test/fixture/package/esdoc.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
"debug": false,
66
"index": "./test/fixture/package/README.md",
77
"package": "./test/fixture/package/package.json",
8-
"importPathPrefix": "out",
98
"title": "ESDoc Test Fixture",
109
"test": {
1110
"type": "mocha",

0 commit comments

Comments
 (0)