Skip to content

Commit 6f7a43d

Browse files
feat: update changelog
1 parent 706b5cb commit 6f7a43d

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

Diff for: CHANGELOG.md

+21
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
# Changelog
22

3+
## 3.0.0
4+
### breaking
5+
- change absolute import
6+
7+
Changed path to import modules under the src directory. When you use `src/hooks/useCounter` in React component, for example:
8+
9+
```js
10+
// before
11+
import useCounter from '~/src/hooks/useCounter'
12+
```
13+
14+
```js
15+
// after
16+
import useCounter from '@/hooks/useCounter'
17+
```
18+
19+
### chore
20+
- solve a storybook warning
21+
- refactor: move style.css to assets
22+
- fix command on commit
23+
324
## 2.2.1
425
### chore
526
- add quiet option to start-storybook command

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "next-starter-kit",
3-
"version": "2.2.1",
3+
"version": "3.0.0",
44
"scripts": {
55
"dev": "next",
66
"build": "next build",

0 commit comments

Comments
 (0)