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

Commit 15b4c31

Browse files
committed
add changelog.md
1 parent cd9b972 commit 15b4c31

File tree

3 files changed

+118
-109
lines changed

3 files changed

+118
-109
lines changed

CHANGELOG.md

Lines changed: 116 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,116 @@
1+
# changelog
2+
3+
### 6.0.1
4+
5+
- update packages
6+
- next@6.0.1
7+
- typescript@2.8.3
8+
- ...etc@latest
9+
10+
### 5.1.0
11+
12+
- update packages
13+
- typescript@2.7.2
14+
- next@5.1.0
15+
- ...etc@latest
16+
17+
### 5.0.5
18+
19+
- ci
20+
- fix
21+
- Layout.tsx global style is not rendered in output <head> [issue#7](https://github.com/deptno/next.js-typescript-starter-kit/issues/7)
22+
23+
### 5.0.4
24+
25+
- update jest config
26+
- scripts
27+
- `npm run ts:check` # typescript error check
28+
- `npm run test:watch`
29+
- `npm run test:coverage`
30+
31+
32+
### 5.0.3
33+
34+
- fix
35+
- store-reducer connection
36+
- add enzyme
37+
- scripts
38+
- `npm run test`
39+
- `npm run test:watch`
40+
- rename dev script `npm run dev` > `npm run start:dev`
41+
42+
### 5.0.2
43+
44+
- add storybook
45+
46+
### 5.0.1
47+
48+
- name change
49+
- next.js-typescript-boilerplate -> next.js-typescript-starter-kit
50+
51+
### 5.0.0
52+
53+
- package.json scripts
54+
- add `export`, to export static assets(MUST run after `npm run build`)
55+
- remove `ts:compile` script (no more need to run tsc)
56+
57+
- apply new packages
58+
- @next/next-typescript
59+
60+
- update packages
61+
- next@5.0.0
62+
- react@16.2
63+
- react-dom@16.2
64+
- typescript@2.7.1
65+
66+
### 4.1.4
67+
68+
- update packages
69+
- next@4.1.4
70+
- react@16.1
71+
- react-dom@16.1
72+
- typescript@2.6.1
73+
- update packages client load
74+
- bootstrap@4.0.0-beta.2
75+
- version align with next
76+
77+
---
78+
79+
## env
80+
81+
### development
82+
83+
#### installation
84+
85+
```
86+
npm install
87+
npm run start:dev # run
88+
```
89+
90+
#### test
91+
92+
```
93+
npm run test # test
94+
npm run test:watch
95+
npm run test:coverage # report coverage
96+
```
97+
98+
### production
99+
100+
```
101+
npm install
102+
npm run build # create .next directory
103+
npm start # start server
104+
```
105+
106+
or
107+
108+
```
109+
npm install
110+
npm run build # create .next directory
111+
npm run export # create .out directory
112+
```
113+
114+
## license
115+
116+
MIT

README.md

Lines changed: 1 addition & 108 deletions
Original file line numberDiff line numberDiff line change
@@ -95,112 +95,5 @@ export const Home = props =>
9595

9696
---
9797

98-
## changelog
99-
100-
### 5.1.0
101-
102-
- update packages
103-
- typescript@2.7.2
104-
- next@5.1.0
105-
- ...etc@latest
106-
107-
### 5.0.5
108-
109-
- ci
110-
- fix
111-
- Layout.tsx global style is not rendered in output <head> [issue#7](https://github.com/deptno/next.js-typescript-starter-kit/issues/7)
112-
113-
### 5.0.4
114-
115-
- update jest config
116-
- scripts
117-
- `npm run ts:check` # typescript error check
118-
- `npm run test:watch`
119-
- `npm run test:coverage`
120-
121-
122-
### 5.0.3
123-
124-
- fix
125-
- store-reducer connection
126-
- add enzyme
127-
- scripts
128-
- `npm run test`
129-
- `npm run test:watch`
130-
- rename dev script `npm run dev` > `npm run start:dev`
131-
132-
### 5.0.2
133-
134-
- add storybook
135-
136-
### 5.0.1
137-
138-
- name change
139-
- next.js-typescript-boilerplate -> next.js-typescript-starter-kit
140-
141-
### 5.0.0
142-
143-
- package.json scripts
144-
- add `export`, to export static assets(MUST run after `npm run build`)
145-
- remove `ts:compile` script (no more need to run tsc)
146-
147-
- apply new packages
148-
- @next/next-typescript
149-
150-
- update packages
151-
- next@5.0.0
152-
- react@16.2
153-
- react-dom@16.2
154-
- typescript@2.7.1
155-
156-
### 4.1.4
157-
158-
- update packages
159-
- next@4.1.4
160-
- react@16.1
161-
- react-dom@16.1
162-
- typescript@2.6.1
163-
- update packages client load
164-
- bootstrap@4.0.0-beta.2
165-
- version align with next
166-
167-
---
168-
169-
## env
170-
171-
### development
172-
173-
#### installation
174-
175-
```
176-
npm install
177-
npm run start:dev # run
178-
```
179-
180-
#### test
181-
182-
```
183-
npm run test # test
184-
npm run test:watch
185-
npm run test:coverage # report coverage
186-
```
187-
188-
### production
189-
190-
```
191-
npm install
192-
npm run build # create .next directory
193-
npm start # start server
194-
```
195-
196-
or
197-
198-
```
199-
npm install
200-
npm run build # create .next directory
201-
npm run export # create .out directory
202-
```
203-
204-
## license
98+
## [changelog](CHANGELOG.md)
20599

206-
MIT

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "next.js-typescript-starter-kit",
3-
"version": "5.1.0",
3+
"version": "6.0.1",
44
"main": "index.js",
55
"repository": "https://github.com/deptno/next.js-typescript-starter-kit",
66
"author": "Bonggyun Lee <deptno@gmail.com>",

0 commit comments

Comments
 (0)