Skip to content
This repository was archived by the owner on Aug 27, 2020. It is now read-only.

Commit 4257ad1

Browse files
committed
[WIP] log
1 parent 3c7739d commit 4257ad1

File tree

2 files changed

+31
-24
lines changed

2 files changed

+31
-24
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# changelog
22

3+
### 7.0.1
4+
- replace npm with yarn in `README.me`
5+
- remove storybook
6+
- apply postcss-preset-env
7+
- typescript@3.1.1
8+
- next@7.0.1
9+
- react@16.5
10+
311
### 6.1.1
412
- typescript@3.0.1
513
- next@6.1.1

README.md

Lines changed: 23 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
Start with sample
66

77
### Latest update
8-
- typescript@3.0.1
9-
- next@6.1.1
10-
- react@16.4
8+
- **REMOVED storybook** (conflict with TypeScript, Next), you can use via old version [v6.0.1](https://github.com/deptno/next.js-typescript-starter-kit/releases/tag/6.0.1)
9+
- typescript@3.1.1, next@7.0.1, react@16.5
10+
- applied postcss-preset-env
1111

1212
> see **[ChangeLog](CHANGELOG.md)**
1313
@@ -16,16 +16,9 @@ Start with sample
1616
- Styled-jsx
1717
- Module css **(PostCSS - cssnext, nested, import)**
1818
- SEO & analytics(Google Analytics, Facebook Pixel, <s>Naver Analytics</s>)
19-
- Storybook **(support module css)**
19+
- ~~Storybook **(support module css)**~~
2020
- Jest & Enzyme **(support module css)**
2121

22-
### Packages
23-
- next@6.1.1
24-
- react@16.4
25-
- redux-thunk
26-
- react-ga
27-
- redux-persist@4
28-
2922
### Load from CDN
3023
- font-awesome@5
3124

@@ -35,47 +28,53 @@ Start with sample
3528
git clone https://github.com/deptno/next.js-typescript-starter-kit my-project
3629
cd my-project
3730
rm -r .git
38-
npm install
31+
yarn
3932
```
4033

4134
## Run :rocket:
4235

4336
#### :rocket: Test
4437
```bash
45-
npm run test # test
46-
npm run test:watch
47-
npm run test:coverage # report coverage
38+
yarn test # test
39+
yarn test:watch
40+
yarn test:coverage # report coverage
4841
```
4942

43+
<details><summary>~~:rocket: StoryBook~~</summary>
44+
<p>
45+
5046
#### :rocket: StoryBook
5147
```bash
52-
npm run storybook # open browser localhost:6006
48+
yarn storybook # open browser localhost:6006
5349
```
5450

5551
```bash
56-
npm run build-storybook # Build storybook static assets
52+
yarn build-storybook # Build storybook static assets
5753
```
5854

55+
</p>
56+
</details>
57+
5958
### :rocket: Development
6059

6160
```bash
62-
npm run start:dev # run
61+
yarn start:dev # run
6362
```
6463

6564
### :rocket: Production
6665

6766
#### Serve
6867
```bash
69-
npm install
70-
npm run build # create .next directory
71-
npm start # start server
68+
yarn
69+
yarn build # create .next directory
70+
yarn start # start server
7271
```
7372

7473
#### Build static HTML
7574
```bash
76-
npm install
77-
npm run build # create .next directory
78-
npm run export # create .out directory
75+
yarn
76+
yarn build # create .next directory
77+
yarn export # create .out directory
7978
```
8079

8180
## Configuration

0 commit comments

Comments
 (0)