Skip to content

Commit 5887fe6

Browse files
committed
Merge branch 'master' into ja
2 parents d7fbb76 + 11d7ac5 commit 5887fe6

File tree

12 files changed

+13
-13
lines changed

12 files changed

+13
-13
lines changed

tutorial/1-node-npm-yarn-package-json/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,4 +55,4 @@ yarn-error.log
5555

5656
次章: [2 - パッケージのインストールと使用](/tutorial/2-packages)
5757

58-
[目次](https://github.com/verekia/js-stack-from-scratch)に戻る
58+
[目次](https://github.com/verekia/js-stack-from-scratch#table-of-contents)に戻る

tutorial/10-immutable-redux-improvements/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,4 +105,4 @@ export const makeBark = createAction(MAKE_BARK, () => true);
105105

106106
次章: [11 - Mocha、Chai、Sinonによるテスティング](/tutorial/11-testing-mocha-chai-sinon)
107107

108-
[前章](/tutorial/9-redux) または [目次](https://github.com/verekia/js-stack-from-scratch)に戻る。
108+
[前章](/tutorial/9-redux) または [目次](https://github.com/verekia/js-stack-from-scratch#table-of-contents)に戻る。

tutorial/11-testing-mocha-chai-sinon/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -157,4 +157,4 @@ describe('Shared', () => {
157157

158158
次章: [12 - Flowによる型検査](/tutorial/12-flow)
159159

160-
[前章](/tutorial/10-immutable-redux-improvements)または[目次](https://github.com/verekia/js-stack-from-scratch)に戻る。
160+
[前章](/tutorial/10-immutable-redux-improvements)または[目次](https://github.com/verekia/js-stack-from-scratch#table-of-contents)に戻る。

tutorial/12-flow/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,4 +109,4 @@ Immutableがこの件を公式に解決するまで、Immutableコンポーネ
109109

110110
(原文: [12 - Flow](https://github.com/verekia/js-stack-from-scratch/tree/master/tutorial/12-flow))
111111

112-
[前章](/tutorial/11-testing-mocha-chai-sinon)または[目次](https://github.com/verekia/js-stack-from-scratch)に戻る。
112+
[前章](/tutorial/11-testing-mocha-chai-sinon)または[目次](https://github.com/verekia/js-stack-from-scratch#table-of-contents)に戻る。

tutorial/2-packages/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@
2929

3030
次章: [3 - ES6をBabelとGulpを使ってセットアップ](/tutorial/3-es6-babel-gulp)
3131

32-
[前章](/tutorial/1-node-npm-yarn-package-json)または[目次](https://github.com/verekia/js-stack-from-scratch)に戻る
32+
[前章](/tutorial/1-node-npm-yarn-package-json)または[目次](https://github.com/verekia/js-stack-from-scratch#table-of-contents)に戻る

tutorial/3-es6-babel-gulp/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,4 +91,4 @@ GulpのAPI自体は非常に率直なものです。`gulp.task`を定義し、
9191

9292
次章: [4 - ES6構文によるクラスの使い方](/tutorial/4-es6-syntax-class)
9393

94-
[前章](/tutorial/2-packages)または[目次](https://github.com/verekia/js-stack-from-scratch)に戻る。
94+
[前章](/tutorial/2-packages)または[目次](https://github.com/verekia/js-stack-from-scratch#table-of-contents)に戻る。

tutorial/4-es6-syntax-class/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,4 @@ console.log(toby.bark());
4040

4141
次章: [5 - ES6のモジュールの構文](/tutorial/5-es6-modules-syntax)
4242

43-
[前章](/tutorial/3-es6-babel-gulp)または[目次](https://github.com/verekia/js-stack-from-scratch)に戻る。
43+
[前章](/tutorial/3-es6-babel-gulp)または[目次](https://github.com/verekia/js-stack-from-scratch#table-of-contents)に戻る。

tutorial/5-es6-modules-syntax/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,4 @@ import { exec } from 'child_process';
4949

5050
次章: [6 - ESLint](/tutorial/6-eslint)
5151

52-
[前章](/tutorial/4-es6-syntax-class)または[目次](https://github.com/verekia/js-stack-from-scratch)に戻る。
52+
[前章](/tutorial/4-es6-syntax-class)または[目次](https://github.com/verekia/js-stack-from-scratch#table-of-contents)に戻る。

tutorial/6-eslint/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
潜在的な問題を見つけるため、コードをlintしましょう。ESLintはES6コード用のlinterです。ルールを自身で細かく設定する代わりに、Airbnbが作った設定を利用します。この設定はプラグインをいくつか使うため、プラグインをインストールする必要があります。
44

5-
- `yarn add --dev eslint eslint-config-airbnb eslint-plugin-import eslint-plugin-jsx-a11y eslint-plugin-react`を実行します
5+
- `yarn add --dev eslint eslint-config-airbnb eslint-plugin-import eslint-plugin-jsx-a11y@2.2.3 eslint-plugin-react`を実行します
66

77
このように、複数のパッケージを一つのコマンドでインストールできます。いつものように、これらは全て`package.jsonに追加されます。
88

@@ -117,4 +117,4 @@ gulp.task('build', ['lint', 'clean'], () =>
117117

118118
次章: [7 - Webpackによるクライアントアプリ](/tutorial/7-client-webpack)
119119

120-
[前章](/tutorial/5-es6-modules-syntax)または[目次](https://github.com/verekia/js-stack-from-scratch)に戻る。
120+
[前章](/tutorial/5-es6-modules-syntax)または[目次](https://github.com/verekia/js-stack-from-scratch#table-of-contents)に戻る。

tutorial/7-client-webpack/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -193,4 +193,4 @@ gulp.task('clean', () => del([
193193

194194
次章: [8 - React](/tutorial/8-react)
195195

196-
[前章](/tutorial/6-eslint)または[目次](https://github.com/verekia/js-stack-from-scratch)に戻る。
196+
[前章](/tutorial/6-eslint)または[目次](https://github.com/verekia/js-stack-from-scratch#table-of-contents)に戻る。

tutorial/8-react/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,4 @@ clientEntryPoint: 'src/client/app.jsx',
5757

5858
次章: [9 - Redux](/tutorial/9-redux)
5959

60-
[前章](/tutorial/7-client-webpack)または[目次](https://github.com/verekia/js-stack-from-scratch)に戻る。
60+
[前章](/tutorial/7-client-webpack)または[目次](https://github.com/verekia/js-stack-from-scratch#table-of-contents)に戻る。

tutorial/9-redux/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,4 +158,4 @@ export default connect(mapStateToProps)(Message);
158158

159159
次章 : [10 - Immutable JS と Redux の改良](/tutorial/10-immutable-redux-improvements)
160160

161-
[前章](/tutorial/8-react) または [目次](https://github.com/verekia/js-stack-from-scratch) に戻る。
161+
[前章](/tutorial/8-react) または [目次](https://github.com/verekia/js-stack-from-scratch#table-of-contents) に戻る。

0 commit comments

Comments
 (0)