Skip to content

Commit dcf06bb

Browse files
committed
README.mdやcircle.ymlなどを master/docs ベースの運用にあわせて切り替え 表記も今回用に修正
1 parent 8e427be commit dcf06bb

File tree

4 files changed

+24
-59
lines changed

4 files changed

+24
-59
lines changed

README.md

+22-7
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,59 @@
11
# TypeScript in Definitelyland [![Circle CI](https://circleci.com/gh/typescript-ninja/typescript-in-definitelyland.svg?style=svg)](https://circleci.com/gh/typescript-ninja/typescript-in-definitelyland)
22

33
この書籍はvvakame([Twitter](https://twitter.com/vvakame), [GitHub](https://github.com/vvakame))が執筆した、[TypeScript](http://www.typescriptlang.org/)についての本です。
4-
初出はコミットマーケット87にて、[TechBoosterにて頒布](http://techbooster.github.io/c87/#typescript)したもので、その全文を公開しています。
4+
5+
初出はコミットマーケット87にて、[TechBoosterにて頒布](http://techbooster.github.io/c87/#typescript)したものです。
6+
現在はコミックマーケット90にて[頒布](http://techbooster.github.io/c90/#typescript)した内容が反映されています。
57

68
ただし、表紙データは含まれていません。
7-
欲しい場合は紙版をなんとか入手していただきたいところです
9+
欲しい場合は[booth.pm](https://booth.pm/ja/items/299594)(電子版)や[COMIC ZIN](http://shop.comiczin.jp/products/detail.php?product_id=29874)(紙版)から購入してください
810

911
## 本を読むには?
1012

1113
### Webサイトとして閲覧する場合
1214

13-
[こちら](http://typescript.ninja/typescript-in-definitelyland/)で公開予定
15+
[こちら](http://typescript.ninja/typescript-in-definitelyland/)で公開中。
1416

1517
### 電子書籍として閲覧する場合
1618

17-
[griflet](https://tcb.mowa-net.jp/griflet/github/typescript-ninja/typescript-in-definitelyland/)よりダウンロード可能
19+
[booth.pm](https://booth.pm/ja/items/299594)(電子版)から入手できます。
1820

1921
### 紙版が欲しい!
2022

21-
未定
23+
在庫があれば[COMIC ZIN](http://shop.comiczin.jp/products/detail.php?product_id=29874)(紙版)から入手できます。
2224

2325
## 改訂履歴
2426

27+
* 2016/08/04 第2版 確定 (C90版)
2528
* 2014/12/16 初版 確定 (C87版)
2629

2730
## この本のビルドの仕方
2831

2932
```
30-
$ gem install bundler
3133
$ git clone https://github.com/typescript-ninja/typescript-in-definitelyland.git
3234
$ cd typescript-in-definitelyland
35+
$ npm run global
36+
# gem install bundler 相当の処理が走る
3337
$ npm install
38+
# bundle install 相当の処理も走る
3439
$ npm run pdf
3540
```
3641

37-
その他細かい準備(tex入れたり)は[FirstStepReVIEW](https://github.com/TechBooster/FirstStepReVIEW)に準じる。
42+
その他細かい準備(tex入れたり)は[FirstStepReVIEW v2](https://github.com/TechBooster/C89-FirstStepReVIEW-v2)に準じる。
3843
めんどくさい場合はRe:VIEWビルド用の[dockerイメージ](https://registry.hub.docker.com/u/vvakame/review/)を用意してあるので使ってください。
3944

4045
## Special Thanks
4146

47+
### 第2版 Revised TypeScript in Definitelyland
48+
49+
[mhidaka](https://twitter.com/mhidaka)[muo_jp](https://twitter.com/muo_jp)[laco](https://twitter.com/laco0416)にはレビュー・編集・印刷の手配・当日の搬入などなどの形で大変お世話になりました(まだなってる)。
50+
大変感謝しております :yum:
51+
52+
また、紙版ではイラストを[shati](http://utata-ne.net/)さん、デザインをsiosioさんに手がけていただき、第1版の世界観を踏襲した良い装丁にしてもらいました。
53+
大変感謝し、喜んでおります :satisfied:
54+
55+
### 第1版 TypeScript in Definitelyland
56+
4257
[mhidaka](https://twitter.com/mhidaka)[muo_jp](https://twitter.com/muo_jp)にはレビュー・編集・印刷の手配・当日の搬入などなどの形で大変お世話になりました(まだなってる)。
4358
大変感謝しております :yum:
4459

circle.yml

+1-22
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,7 @@
1-
general:
2-
branches:
3-
ignore:
4-
- gh-pages
5-
61
machine:
72
timezone:
83
Asia/Tokyo
9-
environment:
10-
# for gh-pages
11-
GIT_COMMITTER_NAME: vvakame
12-
GIT_COMMITTER_EMAIL: [email protected]
13-
GIT_AUTHOR_NAME: vvakame
14-
GIT_AUTHOR_EMAIL: [email protected]
15-
16-
dependencies:
17-
pre:
18-
- npm run global
194

205
test:
216
override:
22-
- grunt html
23-
24-
deployment:
25-
release:
26-
branch: master
27-
commands:
28-
- ./deploy-gh-pages.sh
7+
- npm run web

deploy-gh-pages.sh

-30
This file was deleted.

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"postinstall": "bundle install",
1212
"pdf": "npm run build && grunt pdf",
1313
"web": "npm run build && grunt web",
14+
"postweb": "cp -r publish/ docs/",
1415
"html": "npm run build && grunt html",
1516
"build:sub": "npm run build:sub1 && npm run build:sub2",
1617
"build:sub1": "tsc -p code/definition-file/augmentGlobal/",

0 commit comments

Comments
 (0)