File tree 5 files changed +32
-0
lines changed
5 files changed +32
-0
lines changed Original file line number Diff line number Diff line change @@ -2,3 +2,4 @@ node_modules
2
2
.vscode
3
3
/dist
4
4
/build
5
+ /docs
Original file line number Diff line number Diff line change
1
+ {
2
+ "source" : " ./src" ,
3
+ "destination" : " ./docs" ,
4
+ "includes" : [" \\ .(js|es6|jsx)$" ],
5
+ "excludes" : [" \\ .config\\ .(js|es6)$" ],
6
+ "access" : [" public" , " protected" ],
7
+ "autoPrivate" : true ,
8
+ "unexportIdentifier" : false ,
9
+ "undocumentIdentifier" : true ,
10
+ "builtinExternal" : true ,
11
+ "index" : " ./README.md" ,
12
+ "package" : " ./package.json" ,
13
+ "coverage" : true ,
14
+ "includeSource" : true ,
15
+ "test" : {
16
+ "type" : " mocha" ,
17
+ "source" : " ./test" ,
18
+ "includes" : [" \\ .test\\ .(js|es6)$" ],
19
+ "excludes" : [" \\ .config\\ .(js|es6)$" ]
20
+ },
21
+ "title" : " Iceleaf" ,
22
+ "styles" : null ,
23
+ "scripts" : null ,
24
+ "plugins" : [
25
+ {"name" : " esdoc-es7-plugin" , "option" : null }
26
+ ],
27
+ "lint" : true
28
+ }
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 10
10
"scripts" : {
11
11
"start" : " webpack-dev-server --progress --colors --hot --host 0.0.0.0 --compress" ,
12
12
"build" : " webpack --inline --optimize-minimize" ,
13
+ "docs" : " esdoc -c esdoc.json"
13
14
"test" : " mocha --compilers js:babel-core/register"
14
15
},
15
16
"dependencies" : {
42
43
"babel-eslint" : " ^6.1.2" ,
43
44
"babel-preset-babili" : " 0.0.1" ,
44
45
"chai" : " ^3.5.0" ,
46
+ "esdoc" : " ^0.4.8" ,
47
+ "esdoc-es7-plugin" : " 0.0.3" ,
45
48
"eslint" : " ^3.5.0" ,
46
49
"eslint-config-airbnb" : " ^11.1.0" ,
47
50
"eslint-import-resolver-webpack" : " ^0.6.0" ,
You can’t perform that action at this time.
0 commit comments