Skip to content

Commit 848a3e6

Browse files
committedJan 19, 2020
Updated dotfile usage
1 parent 134361b commit 848a3e6

File tree

3 files changed

+41
-43
lines changed

3 files changed

+41
-43
lines changed
 

‎.esdoc.json

-28
This file was deleted.

‎jest.config.js

-15
This file was deleted.

‎package.json

+41
Original file line numberDiff line numberDiff line change
@@ -69,5 +69,46 @@
6969
"sourceType": "module"
7070
},
7171
"extends": "@osjs/eslint-config"
72+
},
73+
"esdoc": {
74+
"source": "./src",
75+
"destination": "./doc",
76+
"plugins": [
77+
{
78+
"name": "esdoc-standard-plugin",
79+
"option": {
80+
"brand": {
81+
"title": "OS.js Server API",
82+
"description": "OS.js Server API Documentation",
83+
"repository": "https://github.com/os-js/osjs-core",
84+
"author": "Anders Evenrud <andersevenrud@gmail.com>"
85+
},
86+
"lint": {
87+
"enable": false
88+
},
89+
"coverage": {
90+
"enable": false
91+
},
92+
"undocumentIdentifier": {
93+
"enable": false
94+
}
95+
}
96+
},
97+
{"name": "esdoc-publish-html-plugin"},
98+
{"name": "./src/esdoc.js"}
99+
]
100+
},
101+
"jest": {
102+
"collectCoverage": true,
103+
"coverageReporters": ["lcov"],
104+
"moduleNameMapper": {
105+
"^osjs$": "<rootDir>/__mocks__/core.js"
106+
},
107+
"coveragePathIgnorePatterns": [
108+
"src/esdoc.js",
109+
"src/config.js",
110+
"src/providers",
111+
"/node_modules/"
112+
]
72113
}
73114
}

0 commit comments

Comments
 (0)
Please sign in to comment.