-
-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
26 changed files
with
785 additions
and
625 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,36 @@ | ||
{ | ||
"files": [ | ||
"README.md" | ||
], | ||
"imageSize": 100, | ||
"commit": false, | ||
"commitType": "docs", | ||
"commitConvention": "angular", | ||
"contributors": [ | ||
{ | ||
"login": "jellydn", | ||
"name": "Dung Duc Huynh (Kaka)", | ||
"avatar_url": "https://avatars.githubusercontent.com/u/870029?v=4", | ||
"profile": "https://productsway.com/", | ||
"contributions": [ | ||
"code", | ||
"doc" | ||
] | ||
}, | ||
{ | ||
"login": "mikah13", | ||
"name": "Mike Hoang", | ||
"avatar_url": "https://avatars.githubusercontent.com/u/25890552?v=4", | ||
"profile": "https://mike-hoang-dev.vercel.app/", | ||
"contributions": [ | ||
"code" | ||
] | ||
}, | ||
{ | ||
"login": "salmansheri", | ||
"name": "Salman Sheriff", | ||
"avatar_url": "https://avatars.githubusercontent.com/u/95226945?v=4", | ||
"profile": "https://github.com/salmansheri", | ||
"contributions": [ | ||
"code" | ||
] | ||
} | ||
], | ||
"contributorsPerLine": 7, | ||
"skipCi": true, | ||
"repoType": "github", | ||
"repoHost": "https://github.com", | ||
"projectName": "next-app-starter", | ||
"projectOwner": "jellydn" | ||
"files": ["README.md"], | ||
"imageSize": 100, | ||
"commit": false, | ||
"commitType": "docs", | ||
"commitConvention": "angular", | ||
"contributors": [ | ||
{ | ||
"login": "jellydn", | ||
"name": "Dung Duc Huynh (Kaka)", | ||
"avatar_url": "https://avatars.githubusercontent.com/u/870029?v=4", | ||
"profile": "https://productsway.com/", | ||
"contributions": ["code", "doc"] | ||
}, | ||
{ | ||
"login": "mikah13", | ||
"name": "Mike Hoang", | ||
"avatar_url": "https://avatars.githubusercontent.com/u/25890552?v=4", | ||
"profile": "https://mike-hoang-dev.vercel.app/", | ||
"contributions": ["code"] | ||
}, | ||
{ | ||
"login": "salmansheri", | ||
"name": "Salman Sheriff", | ||
"avatar_url": "https://avatars.githubusercontent.com/u/95226945?v=4", | ||
"profile": "https://github.com/salmansheri", | ||
"contributions": ["code"] | ||
} | ||
], | ||
"contributorsPerLine": 7, | ||
"skipCi": true, | ||
"repoType": "github", | ||
"repoHost": "https://github.com", | ||
"projectName": "next-app-starter", | ||
"projectOwner": "jellydn" | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
repos: | ||
- repo: https://github.com/jellydn/sort-package-json | ||
rev: "1686d9d2ddfb065c4514c637ee4b9985dfbf01dd" # Use the sha / tag you want to point at | ||
hooks: | ||
- id: sort-package-json | ||
|
||
- repo: https://github.com/pre-commit/mirrors-prettier | ||
rev: "v4.0.0-alpha.8" # Use the sha or tag you want to point at | ||
hooks: | ||
- id: prettier | ||
# Those are not supported by biomejs yet, refer https://biomejs.dev/internals/language-support/ | ||
types_or: [html, css, markdown] | ||
- repo: https://github.com/biomejs/pre-commit | ||
rev: "v0.1.0" # Use the sha / tag you want to point at | ||
hooks: | ||
- id: biome-check | ||
exclude: "package.json" | ||
additional_dependencies: ["@biomejs/[email protected]"] |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
import { mergeConfig } from 'vite'; | ||
|
||
export default { | ||
stories: [ | ||
'../stories/**/*.stories.mdx', | ||
'../stories/**/*.stories.@(js|jsx|ts|tsx)', | ||
], | ||
addons: ['@storybook/addon-essentials', 'storybook-addon-designs'], | ||
framework: '@storybook/nextjs', | ||
async viteFinal(config) { | ||
// Merge custom configuration into the default config | ||
return mergeConfig(config, { | ||
// Add storybook-specific dependencies to pre-optimization | ||
optimizeDeps: { | ||
include: ['storybook-addon-designs'], | ||
}, | ||
}); | ||
}, | ||
stories: [ | ||
'../stories/**/*.stories.mdx', | ||
'../stories/**/*.stories.@(js|jsx|ts|tsx)', | ||
], | ||
addons: ['@storybook/addon-essentials', 'storybook-addon-designs'], | ||
framework: '@storybook/nextjs', | ||
async viteFinal(config) { | ||
// Merge custom configuration into the default config | ||
return mergeConfig(config, { | ||
// Add storybook-specific dependencies to pre-optimization | ||
optimizeDeps: { | ||
include: ['storybook-addon-designs'], | ||
}, | ||
}); | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
export const parameters = { | ||
actions: { argTypesRegex: "^on[A-Z].*" }, | ||
controls: { | ||
matchers: { | ||
color: /(background|color)$/i, | ||
date: /Date$/, | ||
actions: { argTypesRegex: '^on[A-Z].*' }, | ||
controls: { | ||
matchers: { | ||
color: /(background|color)$/i, | ||
date: /Date$/, | ||
}, | ||
}, | ||
}, | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.