Skip to content

Commit

Permalink
fix readme
Browse files Browse the repository at this point in the history
  • Loading branch information
gimdongwoo committed Aug 8, 2018
1 parent 6001baa commit 48de59e
Show file tree
Hide file tree
Showing 7 changed files with 1,663 additions and 43 deletions.
3 changes: 3 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,6 @@ dist/*
build/*
node_modules/*
public/*
package.json
package-lock.json
.next/*
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2018 JSDEV.KR

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ http://bit.ly/2vLCtbX
- translation: 🌍
- tutorial: ✅
- video: 📹
1. Finally, submit a [pull request](https://help.github.com/articles/creating-a-pull-request-from-a-fork/)!
5. Finally, submit a [pull request](https://help.github.com/articles/creating-a-pull-request-from-a-fork/)!

We follows the [all-contributors](https://github.com/kentcdodds/all-contributors) specification.

Expand All @@ -47,7 +47,7 @@ We follows the [all-contributors](https://github.com/kentcdodds/all-contributors
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
<!-- prettier-ignore -->
| [<img src="https://avatars0.githubusercontent.com/u/7310854?v=4" width="100px;"/><br /><sub><b>Dongwoo Gim</b></sub>](http://www.sowk.net)<br />[💻](https://github.com/jsdev.kr/gitcodeshare.com/commits?author=gimdongwoo "Code") [🔧](#tool-gimdongwoo "Tools") [🤔](#ideas-gimdongwoo "Ideas, Planning, & Feedback") | [<img src="https://avatars0.githubusercontent.com/u/5884902?v=4" width="100px;"/><br /><sub><b>Thomas</b></sub>](http://ax5.io, axisj.com, axboot.com)<br />[💻](https://github.com/jsdev.kr/gitcodeshare.com/commits?author=thomasJang "Code") [📖](https://github.com/jsdev.kr/gitcodeshare.com/commits?author=thomasJang "Documentation") [🤔](#ideas-thomasJang "Ideas, Planning, & Feedback") |
| :---: | :---: |
| :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: |
<!-- ALL-CONTRIBUTORS-LIST:END -->
<!-- prettier-ignore-end -->

Expand Down
12 changes: 6 additions & 6 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
const withTypescript = require("@zeit/next-typescript")
const withTypescript = require('@zeit/next-typescript');
const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin');

module.exports = withTypescript({
webpack(config, options) {
// Do not run type checking twice:
if (options.isServer) config.plugins.push(new ForkTsCheckerWebpackPlugin())
return config
}
})
if (options.isServer) config.plugins.push(new ForkTsCheckerWebpackPlugin());

return config;
},
});
Loading

0 comments on commit 48de59e

Please sign in to comment.