Skip to content

Releases: KushibikiMashu/nextjs-starter-kit

3.0.0

27 Jun 03:28
Compare
Choose a tag to compare

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

21 Jun 12:58
b9e1a34
Compare
Choose a tag to compare

chore

  • add quiet option to start-storybook command

2.2.0

21 Jun 12:46
dc357f8
Compare
Choose a tag to compare

feature

  • update Next.js to v11
  • update dependencies
  • apply eslint-config-next
  • add lint, tsc check to ci

v2.1.0

30 May 10:03
Compare
Choose a tag to compare

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

23 Mar 17:44
Compare
Choose a tag to compare

v2.0.2

  • use yarn.lock instead of package-lock.json
  • update README.md

v2.0.1

23 Mar 17:40
Compare
Choose a tag to compare

v2.0.1

  • fix: remove unused github workflow