Releases: KushibikiMashu/nextjs-starter-kit
Releases · KushibikiMashu/nextjs-starter-kit
3.0.0
breaking
- change absolute import
Changed path to import modules under the src directory. When you use src/hooks/useCounter
in React component, you must write @/hools/useCounter
instead of ~/src/hooks/useCounter
.
For example:
// before
import useCounter from '~/src/hooks/useCounter'
// after
import useCounter from '@/hooks/useCounter'
chore
- solve a storybook warning
- refactor: move style.css to assets
- fix command on commit
2.2.1
chore
- add quiet option to start-storybook command
2.2.0
feature
- update Next.js to v11
- update dependencies
- apply eslint-config-next
- add lint, tsc check to ci
v2.1.0
feature
- update tailwindcss module
- update Next.js, react, react-dom
- run husky on commit
- run jest on jsdom environment
- use storybook with webpack5
fix
- use green color instead of teal which was removed from tailwindcss v2
chore
- remove unused modules
v2.0.2
v2.0.2
- use yarn.lock instead of package-lock.json
- update README.md
v2.0.1
v2.0.1
- fix: remove unused github workflow