Skip to content

Commit

Permalink
Merge pull request #75 from akashic-games/fix-generating-doc-script
Browse files Browse the repository at this point in the history
ドキュメント生成スクリプトの修正(v2用)
  • Loading branch information
dera- authored Jul 10, 2018
2 parents a9eae58 + d2893a0 commit 307f066
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# ChangeLog

## 2.3.5

* ドキュメント生成方法の変更

## 2.3.4
不具合修正
* `g.Renderer#draw()``save()` `restore()` するように
Expand Down
9 changes: 3 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@akashic/akashic-engine",
"version": "2.3.4",
"version": "2.3.5",
"description": "The core library of Akashic Engine",
"main": "index.js",
"devDependencies": {
Expand All @@ -17,7 +17,7 @@
"textlint-rule-no-mix-dearu-desumasu": "^1.4.0",
"textlint-rule-prh": "^2.4.0",
"tslint": "^5.4.3",
"typedoc": "^0.8.0",
"typedoc": "^0.11.1",
"typescript": "~2.1.6",
"uglify-js": "^2.6.0"
},
Expand All @@ -37,10 +37,7 @@
"minify:node": "uglifyjs -o ./lib/main.node.min.js --compress --mangle -- lib/main.node.js",
"minify:browser": "uglifyjs lib/main.js -o ./lib/main.min.js",
"lint": "tslint -c tslint.json src/**/*.ts spec/*.ts spec/helpers/**/*.ts",
"doc": "npm run doc:rename && npm run doc:build && npm run doc:restorename",
"doc:rename": "renamer --find @types --replace @types.bak ./node_modules/*",
"doc:build": "cd lib && typedoc --out ../doc/html/ --includeDeclarations ../lib/main.d.ts ../typings/console.d.ts && cd ../",
"doc:restorename": "renamer --find @types.bak --replace @types ./node_modules/*"
"doc": "typedoc --excludeExternals --externalPattern \"**/node_modules/**\" --out doc/html/ --includeDeclarations lib/main.d.ts typings/console.d.ts"
},
"files": [
"lib",
Expand Down

0 comments on commit 307f066

Please sign in to comment.