File tree Expand file tree Collapse file tree 2 files changed +22
-1
lines changed
Expand file tree Collapse file tree 2 files changed +22
-1
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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" ,
You can’t perform that action at this time.
0 commit comments