We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 706b5cb commit 6f7a43dCopy full SHA for 6f7a43d
CHANGELOG.md
@@ -1,5 +1,26 @@
1
# Changelog
2
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
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
24
## 2.2.1
25
### chore
26
- add quiet option to start-storybook command
package.json
@@ -1,6 +1,6 @@
{
"name": "next-starter-kit",
- "version": "2.2.1",
+ "version": "3.0.0",
"scripts": {
"dev": "next",
"build": "next build",
0 commit comments