Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

429 - Upgrade to Nextjs 13 / Yarn 3 / Storybook #432

Merged
merged 20 commits into from
Sep 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
d185eb7
remove warning 'Received 'true' for a non-boolean attribute crossOrig…
nozomione Sep 12, 2023
d9a9a63
remove the flag deprecation warning '--static-dir CLI flag is deprec…
nozomione Sep 12, 2023
5f82a56
remove the error 'TypeError: Cannot read property 'definitions' of un…
nozomione Sep 12, 2023
7b67fb6
remove the performance warning ‘Reverting webpack devtool to 'eval-so…
nozomione Sep 12, 2023
c7e4949
upgrade node image to v18.17.1 (stored the node image to the envirome…
nozomione Sep 12, 2023
e48a36f
upgrade the storybook to v7 from v6
nozomione Sep 12, 2023
ab54adc
(fix) resolve runtime error 'MyDocument.getInitialProps() should reso…
nozomione Sep 12, 2023
62d0614
(fix) add the legacyBehavior prop to Next.js buit-in Link component
nozomione Sep 12, 2023
24b0105
(fix) remove the warning 'The value at .experimental has an unexpecte…
nozomione Sep 12, 2023
2fc8cbf
(fix) resolve 'Warning: A title element received an array with more t…
nozomione Sep 12, 2023
0e7140f
(fix) resolve the datatype warning ‘Failed prop type: Invalid prop s…
nozomione Sep 12, 2023
ee9c87a
upgrade Yarn to latest stable v3.6.3 from v1.22.19 and add a local .g…
nozomione Sep 12, 2023
1fcff77
(edit) specified Yarn version in the docker compose
nozomione Sep 13, 2023
c323141
(fix) remove ‘RESOURCE-NAME’ undefined errors at the runtime (storybo…
nozomione Sep 13, 2023
5c24dc7
remove trailing white space and add new line at the end in .gitignore
nozomione Sep 13, 2023
5ebc18e
remove trailing whitespace after the yarn set version command
nozomione Sep 13, 2023
c93f958
(test) remove trailing whitespace inauto-generate file ./yarn/release
nozomione Sep 13, 2023
e3d361f
(edit) exclude .yarn (auto-generated files) from pre-commit test and …
nozomione Sep 13, 2023
c604640
(edit) use module import, add addons, and rearrange the properties in…
nozomione Sep 13, 2023
81a1783
(edit) remove the env var for the docker node image and hard-code in …
nozomione Sep 13, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ repos:
args:
- --fix=lf
- id: trailing-whitespace
exclude: ^client/.yarn/*
args:
- --markdown-linebreak-ext=md
# - id: check-executables-have-shebangs
Expand Down
6 changes: 5 additions & 1 deletion client/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,11 @@ module.exports = {
configFile: path.resolve(`${__dirname}/.babelrc.js`)
}
},
extends: ['airbnb', 'plugin:prettier/recommended'],
extends: [
'airbnb',
'plugin:prettier/recommended',
'plugin:storybook/recommended'
],
env: {
browser: true,
es6: true
Expand Down
13 changes: 13 additions & 0 deletions client/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# dependencies
.pnp.*

# yarn
# (resources)
# https://yarnpkg.com/features/zero-installs
# https://yarnpkg.com/getting-started/qa#which-files-should-be-gitignored
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions
Loading
Loading