Quellcode durchsuchen

Switch to typedoc 1.8

Steven Silvester vor 9 Jahren
Ursprung
Commit
849420282c
2 geänderte Dateien mit 3 neuen und 14 gelöschten Zeilen
  1. 3 3
      package.json
  2. 0 11
      scripts/tdoptions.json

+ 3 - 3
package.json

@@ -42,8 +42,8 @@
     "raw-loader": "^0.5.1",
     "rimraf": "^2.5.0",
     "style-loader": "^0.13.0",
-    "typedoc": "^0.3.12",
-    "typescript": "^1.7.5",
+    "typedoc": "https://github.com/SierraSoftworks/typedoc.git#cb5aea2b218b4f773451e2818a48629ee9c5066e",
+    "typescript": "^1.8.0",
     "url-loader": "^0.5.7",
     "watch": "^0.17.1",
     "webpack": "^1.12.11"
@@ -55,7 +55,7 @@
     "build:src": "tsc --project src && node scripts/copycss.js",
     "build:test": "cd test && tsc --project src && webpack --config webpack.conf.js",
     "build": "npm run build:src && npm run build:test",
-    "docs": "typedoc --options scripts/tdoptions.json",
+    "docs": "typedoc --mode file --module commonjs --excludeNotExported --target es5 --moduleResolution node --out docs/ src",
     "prepublish": "npm run build",
     "postinstall": "npm dedupe",
     "test:chrome": "karma start --browsers=Chrome test/karma.conf.js",

+ 0 - 11
scripts/tdoptions.json

@@ -1,11 +0,0 @@
-{
-  "module": "commonjs",
-  "target": "ES5",
-  "excludeNotExported": true,
-  "experimentalDecorators": true,
-  "mode": "file",
-  "out": "docs",
-  "src": [
-    "src"
-  ]
-}