A clean and lightweight TypeScript Next.js Starter powered by the tools (nearly) everybody use

Overview

Stargazers GitHub followers License GitHub last commit GitHub tag (latest by date) GitHub Workflow Status: cicd LinkedIn Twitter

TS Next Starter

This is a template for a Next.js project based on create-next-app
Report Bug · Request Feature


Quickstart

You can click on the button Use this template or start a new project with create-next-app

npx create-next-app -e https://github.com/jmlweb/tsnextstarter
#or
yarn create next-app -e https://github.com/jmlweb/tsnextstarter
#or
pnpm create next-app -e https://github.com/jmlweb/tsnextstarter

🧠 Philosophy

  • To be opinionated on the tools, but not on the code
  • To help implementing a scalable, module-based directory organization

What's included

Next JS TypeScript Jest Testing-Library cypress Storybook ESLint GitHub Actions

What's not included?

  • Any styling solution
  • Any library for state management, nor for graphql/rest handling
  • Visual changes to the standard create-next-app template

🎛️ Scripts

  • dev: Start server on dev mode
  • build: Build code for production
  • start: Start production server
  • lint: Lint code
  • test: Run Jest
  • test:watch: Run Jest on watch mode for the file provided as argument
  • test:watchAll: Run Jest on watch mode for all the files
  • test:coverage: Run Jest on coverage mode
  • prepare: Install husky hooks
  • commit: Run commitizen
  • release: Run changelog generation and version bumping
  • storybook: Run Storybook in development mode
  • build-storybook: Run Storybook in build mode

🔪 Directories organization

src

For a better organization, the code is organized inside the src folder, while the configuration files and the public directory are located at the root level.

This is supported by Next.js by default.

src/pages

This folder is used only for routing purposes. Every file inside the pages folder should not have any logic attached but to re-export the modules (default for the Component, named for server-side data fetching functions) from the scenes folder.

src/scenes

A scene represents a logical set of screens (or just one) from the application and is formed by:

  • One or more "page" components.
  • If they are needed, one or more data-fetching functions (getStaticProps, getStaticPaths, getServerSideProps)
  • Other files or folders which are used by the scene(s) component(s).
    • components
    • utils
    • *.stories.tsx
    • ...

Each scene can serve to different pages, by using different combinations of page components and data-fetching functions:

  • A scene could export two different components (or "sub-scenes"), along with the same getStaticProps function.
  • The two components represent the same information and use internally most of the same sub-components while maintaining a completely different layout (including subtle variations on the sub-components).
  • The route "/items/layout-a" could point to one of the components, while "/items/layout-b" could point to the other one.

If needed, a scene can contain also other folders like components, and data... with modules shared across the scene.

If you want, you can place your unit tests and stories at the same level as your code.

src/apiHandlers

Each subfolder inside the apiHandlers folder contains one or more handlers (which will be later imported by the api routes) and optionally the tests, utilities, or any other type of auxiliary file.

src/layouts

The layout is formed by a component, along with a function called getLayout which will be imported by the scene and placed in the special getLayout property of the scene component.

Refer to the Next.js documentation for more info about the layouts

src/components, src/data, src/helpers, src/utils...

Just use a folder at the src level for any kind of file which is shared by two or more scenes.

test

You can use this directory for your integration tests with Jest

cypress

e2e (and/or integration) tests and fixtures for Cypress

.storybook

Configuration files for Storybook

.github/workflows

CI/CD and bumping workflows for GitHub Actions

🤷 F.A.Q.

Shall I use the version bumping manually or with the action provided

If you are using already GitHub actions

  • If are comfortable with the workflow, just remember not to run the release command manually
  • If you prefer to bump manually, delete the bumping.yml file inside .github/workflows folder. Whenever you want to do the bumping, run the release script and push your files and tags.

If you are not using GitHub actions

You can safely delete the .github folder or just forget about its existence as it won't harm your project.

How to integrate X feature/technology into my project?

Please, refer to the official Next.js documentation

Comments
  • chore(deps-dev): bump @storybook/addon-a11y from 6.5.10 to 6.5.14

    chore(deps-dev): bump @storybook/addon-a11y from 6.5.10 to 6.5.14

    Bumps @storybook/addon-a11y from 6.5.10 to 6.5.14.

    Release notes

    Sourced from @​storybook/addon-a11y's releases.

    v6.5.14

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043
    • CLI/React native: Fix addons template to import register instead of manager #19620

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    Dependency Upgrades

    • Upgrade loader-utils to 2.0.4 in storysource and source-loader #19891

    v6.5.14-alpha.2

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043

    v6.5.14-alpha.1

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    v6.5.14-alpha.0

    Bug Fixes

    • CLI/React native: Fix addons template to import register instead of manager #19620

    Dependency Upgrades

    • Upgrade loader-utils to 2.0.4 in storysource and source-loader #19891

    v6.5.13

    Bug Fixes

    • Telemetry: Send start/build events even when there is no generator #19507
    • Telemetry: Fix inconsistent debug #19509
    • Addon-docs: Pass remarks plugins to mdx loader #18740
    • Angular: Alias decorateStory as applyDecorators #19189

    v6.5.13-alpha.1

    Bug Fixes

    • Telemetry: Send start/build events even when there is no generator #19507
    • Telemetry: Fix inconsistent debug #19509

    v6.5.13-alpha.0

    Bug Fixes

    ... (truncated)

    Changelog

    Sourced from @​storybook/addon-a11y's changelog.

    6.5.14 (December 2, 2022)

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043
    • CLI/React native: Fix addons template to import register instead of manager #19620

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    Dependency Upgrades

    • Upgrade loader-utils to 2.0.4 in storysource and source-loader #19891

    6.5.14-alpha.2 (December 2, 2022)

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043

    6.5.14-alpha.1 (November 27, 2022)

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    6.5.14-alpha.0 (November 19, 2022)

    Bug Fixes

    • CLI/React native: Fix addons template to import register instead of manager #19620

    Dependency Upgrades

    • Upgrade loader-utils to 2.0.4 in storysource and source-loader #19891

    6.5.13 (October 24, 2022)

    Bug Fixes

    • Telemetry: Send start/build events even when there is no generator #19507
    • Telemetry: Fix inconsistent debug #19509
    • Addon-docs: Pass remarks plugins to mdx loader #18740
    • Angular: Alias decorateStory as applyDecorators #19189

    6.5.13-alpha.1 (October 24, 2022)

    Bug Fixes

    ... (truncated)

    Commits
    • cf65eb7 v6.5.14
    • 6e1e6dd Update git head to 6.5.14-alpha.2, update yarn.lock [ci skip]
    • 71f07c4 v6.5.14-alpha.2
    • 885e7ac Update git head to 6.5.14-alpha.1, update yarn.lock [ci skip]
    • 16dfcaa v6.5.14-alpha.1
    • 2f9f0de Update git head to 6.5.14-alpha.0, update yarn.lock [ci skip]
    • c4e122a v6.5.14-alpha.0
    • 600e497 Update git head to 6.5.13, update yarn.lock [ci skip]
    • 9bc627d v6.5.13
    • ef45ce7 Update git head to 6.5.13-alpha.1, update yarn.lock [ci skip]
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 1
  • chore(deps-dev): bump @storybook/manager-webpack5 from 6.5.10 to 6.5.14

    chore(deps-dev): bump @storybook/manager-webpack5 from 6.5.10 to 6.5.14

    Bumps @storybook/manager-webpack5 from 6.5.10 to 6.5.14.

    Release notes

    Sourced from @​storybook/manager-webpack5's releases.

    v6.5.14

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043
    • CLI/React native: Fix addons template to import register instead of manager #19620

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    Dependency Upgrades

    • Upgrade loader-utils to 2.0.4 in storysource and source-loader #19891

    v6.5.14-alpha.2

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043

    v6.5.14-alpha.1

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    v6.5.14-alpha.0

    Bug Fixes

    • CLI/React native: Fix addons template to import register instead of manager #19620

    Dependency Upgrades

    • Upgrade loader-utils to 2.0.4 in storysource and source-loader #19891

    v6.5.13

    Bug Fixes

    • Telemetry: Send start/build events even when there is no generator #19507
    • Telemetry: Fix inconsistent debug #19509
    • Addon-docs: Pass remarks plugins to mdx loader #18740
    • Angular: Alias decorateStory as applyDecorators #19189

    v6.5.13-alpha.1

    Bug Fixes

    • Telemetry: Send start/build events even when there is no generator #19507
    • Telemetry: Fix inconsistent debug #19509

    v6.5.13-alpha.0

    Bug Fixes

    ... (truncated)

    Changelog

    Sourced from @​storybook/manager-webpack5's changelog.

    6.5.14 (December 2, 2022)

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043
    • CLI/React native: Fix addons template to import register instead of manager #19620

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    Dependency Upgrades

    • Upgrade loader-utils to 2.0.4 in storysource and source-loader #19891

    6.5.14-alpha.2 (December 2, 2022)

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043

    6.5.14-alpha.1 (November 27, 2022)

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    6.5.14-alpha.0 (November 19, 2022)

    Bug Fixes

    • CLI/React native: Fix addons template to import register instead of manager #19620

    Dependency Upgrades

    • Upgrade loader-utils to 2.0.4 in storysource and source-loader #19891

    6.5.13 (October 24, 2022)

    Bug Fixes

    • Telemetry: Send start/build events even when there is no generator #19507
    • Telemetry: Fix inconsistent debug #19509
    • Addon-docs: Pass remarks plugins to mdx loader #18740
    • Angular: Alias decorateStory as applyDecorators #19189

    6.5.13-alpha.1 (October 24, 2022)

    Bug Fixes

    ... (truncated)

    Commits
    • cf65eb7 v6.5.14
    • 6e1e6dd Update git head to 6.5.14-alpha.2, update yarn.lock [ci skip]
    • 71f07c4 v6.5.14-alpha.2
    • 885e7ac Update git head to 6.5.14-alpha.1, update yarn.lock [ci skip]
    • 16dfcaa v6.5.14-alpha.1
    • 2f9f0de Update git head to 6.5.14-alpha.0, update yarn.lock [ci skip]
    • c4e122a v6.5.14-alpha.0
    • 600e497 Update git head to 6.5.13, update yarn.lock [ci skip]
    • 9bc627d v6.5.13
    • ef45ce7 Update git head to 6.5.13-alpha.1, update yarn.lock [ci skip]
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 1
  • chore(deps-dev): bump @storybook/builder-webpack5 from 6.5.10 to 6.5.14

    chore(deps-dev): bump @storybook/builder-webpack5 from 6.5.10 to 6.5.14

    Bumps @storybook/builder-webpack5 from 6.5.10 to 6.5.14.

    Release notes

    Sourced from @​storybook/builder-webpack5's releases.

    v6.5.14

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043
    • CLI/React native: Fix addons template to import register instead of manager #19620

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    Dependency Upgrades

    • Upgrade loader-utils to 2.0.4 in storysource and source-loader #19891

    v6.5.14-alpha.2

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043

    v6.5.14-alpha.1

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    v6.5.14-alpha.0

    Bug Fixes

    • CLI/React native: Fix addons template to import register instead of manager #19620

    Dependency Upgrades

    • Upgrade loader-utils to 2.0.4 in storysource and source-loader #19891

    v6.5.13

    Bug Fixes

    • Telemetry: Send start/build events even when there is no generator #19507
    • Telemetry: Fix inconsistent debug #19509
    • Addon-docs: Pass remarks plugins to mdx loader #18740
    • Angular: Alias decorateStory as applyDecorators #19189

    v6.5.13-alpha.1

    Bug Fixes

    • Telemetry: Send start/build events even when there is no generator #19507
    • Telemetry: Fix inconsistent debug #19509

    v6.5.13-alpha.0

    Bug Fixes

    ... (truncated)

    Changelog

    Sourced from @​storybook/builder-webpack5's changelog.

    6.5.14 (December 2, 2022)

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043
    • CLI/React native: Fix addons template to import register instead of manager #19620

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    Dependency Upgrades

    • Upgrade loader-utils to 2.0.4 in storysource and source-loader #19891

    6.5.14-alpha.2 (December 2, 2022)

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043

    6.5.14-alpha.1 (November 27, 2022)

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    6.5.14-alpha.0 (November 19, 2022)

    Bug Fixes

    • CLI/React native: Fix addons template to import register instead of manager #19620

    Dependency Upgrades

    • Upgrade loader-utils to 2.0.4 in storysource and source-loader #19891

    6.5.13 (October 24, 2022)

    Bug Fixes

    • Telemetry: Send start/build events even when there is no generator #19507
    • Telemetry: Fix inconsistent debug #19509
    • Addon-docs: Pass remarks plugins to mdx loader #18740
    • Angular: Alias decorateStory as applyDecorators #19189

    6.5.13-alpha.1 (October 24, 2022)

    Bug Fixes

    ... (truncated)

    Commits
    • cf65eb7 v6.5.14
    • 6e1e6dd Update git head to 6.5.14-alpha.2, update yarn.lock [ci skip]
    • 71f07c4 v6.5.14-alpha.2
    • 885e7ac Update git head to 6.5.14-alpha.1, update yarn.lock [ci skip]
    • 16dfcaa v6.5.14-alpha.1
    • 2f9f0de Update git head to 6.5.14-alpha.0, update yarn.lock [ci skip]
    • c4e122a v6.5.14-alpha.0
    • 600e497 Update git head to 6.5.13, update yarn.lock [ci skip]
    • 9bc627d v6.5.13
    • ef45ce7 Update git head to 6.5.13-alpha.1, update yarn.lock [ci skip]
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 1
  • chore(deps): bump loader-utils from 1.4.0 to 1.4.1

    chore(deps): bump loader-utils from 1.4.0 to 1.4.1

    Bumps loader-utils from 1.4.0 to 1.4.1.

    Release notes

    Sourced from loader-utils's releases.

    v1.4.1

    1.4.1 (2022-11-07)

    Bug Fixes

    Changelog

    Sourced from loader-utils's changelog.

    1.4.1 (2022-11-07)

    Bug Fixes

    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) You can disable automated security fix PRs for this repo from the Security Alerts page.
    dependencies javascript 
    opened by dependabot[bot] 1
  • chore(deps-dev): bump @types/react from 18.0.20 to 18.0.25

    chore(deps-dev): bump @types/react from 18.0.20 to 18.0.25

    Bumps @types/react from 18.0.20 to 18.0.25.

    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 1
  • chore(deps-dev): bump @types/react from 18.0.20 to 18.0.24

    chore(deps-dev): bump @types/react from 18.0.20 to 18.0.24

    Bumps @types/react from 18.0.20 to 18.0.24.

    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 1
  • chore(deps-dev): bump @storybook/builder-webpack5 from 6.5.10 to 6.5.13

    chore(deps-dev): bump @storybook/builder-webpack5 from 6.5.10 to 6.5.13

    Bumps @storybook/builder-webpack5 from 6.5.10 to 6.5.13.

    Release notes

    Sourced from @​storybook/builder-webpack5's releases.

    v6.5.13

    Bug Fixes

    • Telemetry: Send start/build events even when there is no generator #19507
    • Telemetry: Fix inconsistent debug #19509
    • Addon-docs: Pass remarks plugins to mdx loader #18740
    • Angular: Alias decorateStory as applyDecorators #19189

    v6.5.13-alpha.1

    Bug Fixes

    • Telemetry: Send start/build events even when there is no generator #19507
    • Telemetry: Fix inconsistent debug #19509

    v6.5.13-alpha.0

    Bug Fixes

    • Addon-docs: Pass remarks plugins to mdx loader #18740
    • Angular: Alias decorateStory as applyDecorators #19189

    v6.5.12

    Bug Fixes

    • React: Fix issue with react 18 implementation #19125

    v6.5.11

    Bug Fixes

    • CLI: Fix race condition in sb init #19083
    • Core: Fix WebProjectAnnotations export in preview-web for back-compat #19048
    • Addon-interactions: Fix IE support by replacing array includes #18993
    • Vue: Fix enum check in extractArgTypes #18959
    • React: Fix callback behavior in react@18 #18737
    • Store: always call composeConfigs in setProjectAnnotations #18916
    • Telemetry: improve addon extraction logic #18868
    • Addon-docs: Check for undefined before reading property in extractArgTypes.ts #18710nance

    v6.5.11-alpha.2

    Bug Fixes

    • CLI: Fix race condition in sb init #19083
    • Core: Fix WebProjectAnnotations export in preview-web for back-compat #19048
    • Addon-interactions: Fix IE support by replacing array includes #18993

    v6.5.11-alpha.1

    Bug Fixes

    • Vue: Fix enum check in extractArgTypes #18959

    v6.5.11-alpha.0

    ... (truncated)

    Changelog

    Sourced from @​storybook/builder-webpack5's changelog.

    6.5.13 (October 24, 2022)

    Bug Fixes

    • Telemetry: Send start/build events even when there is no generator #19507
    • Telemetry: Fix inconsistent debug #19509
    • Addon-docs: Pass remarks plugins to mdx loader #18740
    • Angular: Alias decorateStory as applyDecorators #19189

    6.5.13-alpha.1 (October 24, 2022)

    Bug Fixes

    • Telemetry: Send start/build events even when there is no generator #19507
    • Telemetry: Fix inconsistent debug #19509

    6.5.13-alpha.0 (September 28, 2022)

    Bug Fixes

    • Addon-docs: Pass remarks plugins to mdx loader #18740
    • Angular: Alias decorateStory as applyDecorators #19189

    6.5.12 (September 14, 2022)

    Bug Fixes

    • React: Fix issue with react 18 implementation #19125

    6.5.11 (September 13, 2022)

    Bug Fixes

    • CLI: Fix race condition in sb init #19083
    • Core: Fix WebProjectAnnotations export in preview-web for back-compat #19048
    • Addon-interactions: Fix IE support by replacing array includes #18993
    • Vue: Fix enum check in extractArgTypes #18959
    • React: Fix callback behavior in react@18 #18737
    • Store: always call composeConfigs in setProjectAnnotations #18916
    • Telemetry: improve addon extraction logic #18868
    • Addon-docs: Check for undefined before reading property in extractArgTypes.ts #18710nance

    6.5.11-alpha.2 (September 7, 2022)

    Bug Fixes

    • CLI: Fix race condition in sb init #19083
    • Core: Fix WebProjectAnnotations export in preview-web for back-compat #19048
    • Addon-interactions: Fix IE support by replacing array includes #18993

    ... (truncated)

    Commits
    • 9bc627d v6.5.13
    • ef45ce7 Update git head to 6.5.13-alpha.1, update yarn.lock [ci skip]
    • 03f5ebe v6.5.13-alpha.1
    • fc66892 Update git head to 6.5.13-alpha.0, update yarn.lock [ci skip]
    • 1423ff5 v6.5.13-alpha.0
    • ad38b6b Update git head to 6.5.12, update yarn.lock [ci skip]
    • e3991cb v6.5.12
    • 5be644b Update git head to 6.5.11, update yarn.lock [ci skip]
    • db56a25 v6.5.11
    • 0a584e6 Update git head to 6.5.11-alpha.2, update yarn.lock [ci skip]
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 1
  • chore(deps-dev): bump @storybook/manager-webpack5 from 6.5.10 to 6.5.13

    chore(deps-dev): bump @storybook/manager-webpack5 from 6.5.10 to 6.5.13

    Bumps @storybook/manager-webpack5 from 6.5.10 to 6.5.13.

    Release notes

    Sourced from @​storybook/manager-webpack5's releases.

    v6.5.13

    Bug Fixes

    • Telemetry: Send start/build events even when there is no generator #19507
    • Telemetry: Fix inconsistent debug #19509
    • Addon-docs: Pass remarks plugins to mdx loader #18740
    • Angular: Alias decorateStory as applyDecorators #19189

    v6.5.13-alpha.1

    Bug Fixes

    • Telemetry: Send start/build events even when there is no generator #19507
    • Telemetry: Fix inconsistent debug #19509

    v6.5.13-alpha.0

    Bug Fixes

    • Addon-docs: Pass remarks plugins to mdx loader #18740
    • Angular: Alias decorateStory as applyDecorators #19189

    v6.5.12

    Bug Fixes

    • React: Fix issue with react 18 implementation #19125

    v6.5.11

    Bug Fixes

    • CLI: Fix race condition in sb init #19083
    • Core: Fix WebProjectAnnotations export in preview-web for back-compat #19048
    • Addon-interactions: Fix IE support by replacing array includes #18993
    • Vue: Fix enum check in extractArgTypes #18959
    • React: Fix callback behavior in react@18 #18737
    • Store: always call composeConfigs in setProjectAnnotations #18916
    • Telemetry: improve addon extraction logic #18868
    • Addon-docs: Check for undefined before reading property in extractArgTypes.ts #18710nance

    v6.5.11-alpha.2

    Bug Fixes

    • CLI: Fix race condition in sb init #19083
    • Core: Fix WebProjectAnnotations export in preview-web for back-compat #19048
    • Addon-interactions: Fix IE support by replacing array includes #18993

    v6.5.11-alpha.1

    Bug Fixes

    • Vue: Fix enum check in extractArgTypes #18959

    v6.5.11-alpha.0

    ... (truncated)

    Changelog

    Sourced from @​storybook/manager-webpack5's changelog.

    6.5.13 (October 24, 2022)

    Bug Fixes

    • Telemetry: Send start/build events even when there is no generator #19507
    • Telemetry: Fix inconsistent debug #19509
    • Addon-docs: Pass remarks plugins to mdx loader #18740
    • Angular: Alias decorateStory as applyDecorators #19189

    6.5.13-alpha.1 (October 24, 2022)

    Bug Fixes

    • Telemetry: Send start/build events even when there is no generator #19507
    • Telemetry: Fix inconsistent debug #19509

    6.5.13-alpha.0 (September 28, 2022)

    Bug Fixes

    • Addon-docs: Pass remarks plugins to mdx loader #18740
    • Angular: Alias decorateStory as applyDecorators #19189

    6.5.12 (September 14, 2022)

    Bug Fixes

    • React: Fix issue with react 18 implementation #19125

    6.5.11 (September 13, 2022)

    Bug Fixes

    • CLI: Fix race condition in sb init #19083
    • Core: Fix WebProjectAnnotations export in preview-web for back-compat #19048
    • Addon-interactions: Fix IE support by replacing array includes #18993
    • Vue: Fix enum check in extractArgTypes #18959
    • React: Fix callback behavior in react@18 #18737
    • Store: always call composeConfigs in setProjectAnnotations #18916
    • Telemetry: improve addon extraction logic #18868
    • Addon-docs: Check for undefined before reading property in extractArgTypes.ts #18710nance

    6.5.11-alpha.2 (September 7, 2022)

    Bug Fixes

    • CLI: Fix race condition in sb init #19083
    • Core: Fix WebProjectAnnotations export in preview-web for back-compat #19048
    • Addon-interactions: Fix IE support by replacing array includes #18993

    ... (truncated)

    Commits
    • 9bc627d v6.5.13
    • ef45ce7 Update git head to 6.5.13-alpha.1, update yarn.lock [ci skip]
    • 03f5ebe v6.5.13-alpha.1
    • fc66892 Update git head to 6.5.13-alpha.0, update yarn.lock [ci skip]
    • 1423ff5 v6.5.13-alpha.0
    • ad38b6b Update git head to 6.5.12, update yarn.lock [ci skip]
    • e3991cb v6.5.12
    • 5be644b Update git head to 6.5.11, update yarn.lock [ci skip]
    • db56a25 v6.5.11
    • 0a584e6 Update git head to 6.5.11-alpha.2, update yarn.lock [ci skip]
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 1
  • chore(deps-dev): bump @storybook/addon-a11y from 6.5.10 to 6.5.13

    chore(deps-dev): bump @storybook/addon-a11y from 6.5.10 to 6.5.13

    Bumps @storybook/addon-a11y from 6.5.10 to 6.5.13.

    Release notes

    Sourced from @​storybook/addon-a11y's releases.

    v6.5.13

    Bug Fixes

    • Telemetry: Send start/build events even when there is no generator #19507
    • Telemetry: Fix inconsistent debug #19509
    • Addon-docs: Pass remarks plugins to mdx loader #18740
    • Angular: Alias decorateStory as applyDecorators #19189

    v6.5.13-alpha.1

    Bug Fixes

    • Telemetry: Send start/build events even when there is no generator #19507
    • Telemetry: Fix inconsistent debug #19509

    v6.5.13-alpha.0

    Bug Fixes

    • Addon-docs: Pass remarks plugins to mdx loader #18740
    • Angular: Alias decorateStory as applyDecorators #19189

    v6.5.12

    Bug Fixes

    • React: Fix issue with react 18 implementation #19125

    v6.5.11

    Bug Fixes

    • CLI: Fix race condition in sb init #19083
    • Core: Fix WebProjectAnnotations export in preview-web for back-compat #19048
    • Addon-interactions: Fix IE support by replacing array includes #18993
    • Vue: Fix enum check in extractArgTypes #18959
    • React: Fix callback behavior in react@18 #18737
    • Store: always call composeConfigs in setProjectAnnotations #18916
    • Telemetry: improve addon extraction logic #18868
    • Addon-docs: Check for undefined before reading property in extractArgTypes.ts #18710nance

    v6.5.11-alpha.2

    Bug Fixes

    • CLI: Fix race condition in sb init #19083
    • Core: Fix WebProjectAnnotations export in preview-web for back-compat #19048
    • Addon-interactions: Fix IE support by replacing array includes #18993

    v6.5.11-alpha.1

    Bug Fixes

    • Vue: Fix enum check in extractArgTypes #18959

    v6.5.11-alpha.0

    ... (truncated)

    Changelog

    Sourced from @​storybook/addon-a11y's changelog.

    6.5.13 (October 24, 2022)

    Bug Fixes

    • Telemetry: Send start/build events even when there is no generator #19507
    • Telemetry: Fix inconsistent debug #19509
    • Addon-docs: Pass remarks plugins to mdx loader #18740
    • Angular: Alias decorateStory as applyDecorators #19189

    6.5.13-alpha.1 (October 24, 2022)

    Bug Fixes

    • Telemetry: Send start/build events even when there is no generator #19507
    • Telemetry: Fix inconsistent debug #19509

    6.5.13-alpha.0 (September 28, 2022)

    Bug Fixes

    • Addon-docs: Pass remarks plugins to mdx loader #18740
    • Angular: Alias decorateStory as applyDecorators #19189

    6.5.12 (September 14, 2022)

    Bug Fixes

    • React: Fix issue with react 18 implementation #19125

    6.5.11 (September 13, 2022)

    Bug Fixes

    • CLI: Fix race condition in sb init #19083
    • Core: Fix WebProjectAnnotations export in preview-web for back-compat #19048
    • Addon-interactions: Fix IE support by replacing array includes #18993
    • Vue: Fix enum check in extractArgTypes #18959
    • React: Fix callback behavior in react@18 #18737
    • Store: always call composeConfigs in setProjectAnnotations #18916
    • Telemetry: improve addon extraction logic #18868
    • Addon-docs: Check for undefined before reading property in extractArgTypes.ts #18710nance

    6.5.11-alpha.2 (September 7, 2022)

    Bug Fixes

    • CLI: Fix race condition in sb init #19083
    • Core: Fix WebProjectAnnotations export in preview-web for back-compat #19048
    • Addon-interactions: Fix IE support by replacing array includes #18993

    ... (truncated)

    Commits
    • 9bc627d v6.5.13
    • ef45ce7 Update git head to 6.5.13-alpha.1, update yarn.lock [ci skip]
    • 03f5ebe v6.5.13-alpha.1
    • fc66892 Update git head to 6.5.13-alpha.0, update yarn.lock [ci skip]
    • 1423ff5 v6.5.13-alpha.0
    • ad38b6b Update git head to 6.5.12, update yarn.lock [ci skip]
    • e3991cb v6.5.12
    • 5be644b Update git head to 6.5.11, update yarn.lock [ci skip]
    • db56a25 v6.5.11
    • 0a584e6 Update git head to 6.5.11-alpha.2, update yarn.lock [ci skip]
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 1
  • chore(deps-dev): bump eslint-plugin-testing-library from 5.6.1 to 5.7.2

    chore(deps-dev): bump eslint-plugin-testing-library from 5.6.1 to 5.7.2

    Bumps eslint-plugin-testing-library from 5.6.1 to 5.7.2.

    Release notes

    Sourced from eslint-plugin-testing-library's releases.

    v5.7.2

    5.7.2 (2022-10-02)

    Bug Fixes

    • no-node-access: false positives with props.children (#658) (5f4287f)

    v5.7.1

    5.7.1 (2022-10-02)

    Bug Fixes

    • no-dom-imports: false negatives with several testing library imports (#657) (0ae1f25)

    v5.7.0

    5.7.0 (2022-09-23)

    Features

    • no-node-access: report childElementCount prop (#650) (3463a2c)

    v5.6.4

    5.6.4 (2022-09-13)

    Bug Fixes

    • no-wait-for-side-effects: false positive inside .then() (#645) (fc6ccf8), closes #500

    v5.6.3

    5.6.3 (2022-09-09)

    Bug Fixes

    • consistent-data-testid: avoid crash for filename with square brackets (#643) (48b19d5), closes #509

    v5.6.2

    5.6.2 (2022-09-07)

    Bug Fixes

    • no-await-sync-events: false positive for delay from vars (#641) (3c2cbbd), closes #403
    Commits
    • 5f4287f fix(no-node-access): false positives with props.children (#658)
    • 0ae1f25 fix(no-dom-imports): false negatives with several testing library imports (#657)
    • e262701 build(deps-dev): bump eslint-remote-tester-repositories from 0.0.6 to 0.0.7 (...
    • cec88fb docs: add brenocota-hotmart as a contributor (#651)
    • 3463a2c feat(no-node-access): report childElementCount prop (#650)
    • fc6ccf8 fix(no-wait-for-side-effects): false positive inside .then() (#645)
    • 2cf3883 docs: add sjarva as a contributor for doc (#644)
    • 48b19d5 fix(consistent-data-testid): avoid crash for filename with square brackets (#...
    • 3c2cbbd fix(no-await-sync-events): false positive for delay from vars (#641)
    • 60fc742 docs: add sjarva as a contributor for code, test (#640)
    • See full diff in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 1
  • chore(deps-dev): bump eslint-plugin-testing-library from 5.6.1 to 5.7.0

    chore(deps-dev): bump eslint-plugin-testing-library from 5.6.1 to 5.7.0

    Bumps eslint-plugin-testing-library from 5.6.1 to 5.7.0.

    Release notes

    Sourced from eslint-plugin-testing-library's releases.

    v5.7.0

    5.7.0 (2022-09-23)

    Features

    • no-node-access: report childElementCount prop (#650) (3463a2c)

    v5.6.4

    5.6.4 (2022-09-13)

    Bug Fixes

    • no-wait-for-side-effects: false positive inside .then() (#645) (fc6ccf8), closes #500

    v5.6.3

    5.6.3 (2022-09-09)

    Bug Fixes

    • consistent-data-testid: avoid crash for filename with square brackets (#643) (48b19d5), closes #509

    v5.6.2

    5.6.2 (2022-09-07)

    Bug Fixes

    • no-await-sync-events: false positive for delay from vars (#641) (3c2cbbd), closes #403
    Commits
    • 3463a2c feat(no-node-access): report childElementCount prop (#650)
    • fc6ccf8 fix(no-wait-for-side-effects): false positive inside .then() (#645)
    • 2cf3883 docs: add sjarva as a contributor for doc (#644)
    • 48b19d5 fix(consistent-data-testid): avoid crash for filename with square brackets (#...
    • 3c2cbbd fix(no-await-sync-events): false positive for delay from vars (#641)
    • 60fc742 docs: add sjarva as a contributor for code, test (#640)
    • See full diff in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 1
  • chore(deps-dev): bump @storybook/builder-webpack5 from 6.5.10 to 6.5.15

    chore(deps-dev): bump @storybook/builder-webpack5 from 6.5.10 to 6.5.15

    Bumps @storybook/builder-webpack5 from 6.5.10 to 6.5.15.

    Release notes

    Sourced from @​storybook/builder-webpack5's releases.

    v6.5.15

    Bug Fixes

    • Support Angular 15.0.4 #20287
    • CLI: execute automigrations when pressing enter in the prompts #20208

    Maintenance

    • Ember: Remove global Ember usage #17843

    v6.5.15-alpha.1

    Bug Fixes

    • Support Angular 15.0.4 #20287
    • CLI: execute automigrations when pressing enter in the prompts #20208

    v6.5.15-alpha.0

    Maintenance

    • Ember: Remove global Ember usage #17843

    v6.5.14

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043
    • CLI/React native: Fix addons template to import register instead of manager #19620

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    Dependency Upgrades

    • Upgrade loader-utils to 2.0.4 in storysource and source-loader #19891

    v6.5.14-alpha.2

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043

    v6.5.14-alpha.1

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    v6.5.14-alpha.0

    Bug Fixes

    • CLI/React native: Fix addons template to import register instead of manager #19620

    ... (truncated)

    Changelog

    Sourced from @​storybook/builder-webpack5's changelog.

    6.5.15 (December 20, 2022)

    Bug Fixes

    • Support Angular 15.0.4 #20287
    • CLI: execute automigrations when pressing enter in the prompts #20208

    Maintenance

    • Ember: Remove global Ember usage #17843

    6.5.15-alpha.1 (December 20, 2022)

    Bug Fixes

    • Support Angular 15.0.4 #20287
    • CLI: execute automigrations when pressing enter in the prompts #20208

    6.5.15-alpha.0 (December 12, 2022)

    Maintenance

    • Ember: Remove global Ember usage #17843

    6.5.14 (December 2, 2022)

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043
    • CLI/React native: Fix addons template to import register instead of manager #19620

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    Dependency Upgrades

    • Upgrade loader-utils to 2.0.4 in storysource and source-loader #19891

    6.5.14-alpha.2 (December 2, 2022)

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043

    6.5.14-alpha.1 (November 27, 2022)

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    ... (truncated)

    Commits
    • feab19d v6.5.15
    • 075a8dd Update git head to 6.5.15-alpha.1, update yarn.lock [ci skip]
    • cfd775b v6.5.15-alpha.1
    • 9c19ef0 Update git head to 6.5.15-alpha.0, update yarn.lock [ci skip]
    • 095d6ad v6.5.15-alpha.0
    • ae06ca9 Update git head to 6.5.14, update yarn.lock [ci skip]
    • cf65eb7 v6.5.14
    • 6e1e6dd Update git head to 6.5.14-alpha.2, update yarn.lock [ci skip]
    • 71f07c4 v6.5.14-alpha.2
    • 885e7ac Update git head to 6.5.14-alpha.1, update yarn.lock [ci skip]
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 0
  • chore(deps-dev): bump @storybook/manager-webpack5 from 6.5.10 to 6.5.15

    chore(deps-dev): bump @storybook/manager-webpack5 from 6.5.10 to 6.5.15

    Bumps @storybook/manager-webpack5 from 6.5.10 to 6.5.15.

    Release notes

    Sourced from @​storybook/manager-webpack5's releases.

    v6.5.15

    Bug Fixes

    • Support Angular 15.0.4 #20287
    • CLI: execute automigrations when pressing enter in the prompts #20208

    Maintenance

    • Ember: Remove global Ember usage #17843

    v6.5.15-alpha.1

    Bug Fixes

    • Support Angular 15.0.4 #20287
    • CLI: execute automigrations when pressing enter in the prompts #20208

    v6.5.15-alpha.0

    Maintenance

    • Ember: Remove global Ember usage #17843

    v6.5.14

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043
    • CLI/React native: Fix addons template to import register instead of manager #19620

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    Dependency Upgrades

    • Upgrade loader-utils to 2.0.4 in storysource and source-loader #19891

    v6.5.14-alpha.2

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043

    v6.5.14-alpha.1

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    v6.5.14-alpha.0

    Bug Fixes

    • CLI/React native: Fix addons template to import register instead of manager #19620

    ... (truncated)

    Changelog

    Sourced from @​storybook/manager-webpack5's changelog.

    6.5.15 (December 20, 2022)

    Bug Fixes

    • Support Angular 15.0.4 #20287
    • CLI: execute automigrations when pressing enter in the prompts #20208

    Maintenance

    • Ember: Remove global Ember usage #17843

    6.5.15-alpha.1 (December 20, 2022)

    Bug Fixes

    • Support Angular 15.0.4 #20287
    • CLI: execute automigrations when pressing enter in the prompts #20208

    6.5.15-alpha.0 (December 12, 2022)

    Maintenance

    • Ember: Remove global Ember usage #17843

    6.5.14 (December 2, 2022)

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043
    • CLI/React native: Fix addons template to import register instead of manager #19620

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    Dependency Upgrades

    • Upgrade loader-utils to 2.0.4 in storysource and source-loader #19891

    6.5.14-alpha.2 (December 2, 2022)

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043

    6.5.14-alpha.1 (November 27, 2022)

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    ... (truncated)

    Commits
    • feab19d v6.5.15
    • 075a8dd Update git head to 6.5.15-alpha.1, update yarn.lock [ci skip]
    • cfd775b v6.5.15-alpha.1
    • 9c19ef0 Update git head to 6.5.15-alpha.0, update yarn.lock [ci skip]
    • 095d6ad v6.5.15-alpha.0
    • ae06ca9 Update git head to 6.5.14, update yarn.lock [ci skip]
    • cf65eb7 v6.5.14
    • 6e1e6dd Update git head to 6.5.14-alpha.2, update yarn.lock [ci skip]
    • 71f07c4 v6.5.14-alpha.2
    • 885e7ac Update git head to 6.5.14-alpha.1, update yarn.lock [ci skip]
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 0
  • chore(deps-dev): bump @storybook/addon-a11y from 6.5.10 to 6.5.15

    chore(deps-dev): bump @storybook/addon-a11y from 6.5.10 to 6.5.15

    Bumps @storybook/addon-a11y from 6.5.10 to 6.5.15.

    Release notes

    Sourced from @​storybook/addon-a11y's releases.

    v6.5.15

    Bug Fixes

    • Support Angular 15.0.4 #20287
    • CLI: execute automigrations when pressing enter in the prompts #20208

    Maintenance

    • Ember: Remove global Ember usage #17843

    v6.5.15-alpha.1

    Bug Fixes

    • Support Angular 15.0.4 #20287
    • CLI: execute automigrations when pressing enter in the prompts #20208

    v6.5.15-alpha.0

    Maintenance

    • Ember: Remove global Ember usage #17843

    v6.5.14

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043
    • CLI/React native: Fix addons template to import register instead of manager #19620

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    Dependency Upgrades

    • Upgrade loader-utils to 2.0.4 in storysource and source-loader #19891

    v6.5.14-alpha.2

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043

    v6.5.14-alpha.1

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    v6.5.14-alpha.0

    Bug Fixes

    • CLI/React native: Fix addons template to import register instead of manager #19620

    ... (truncated)

    Changelog

    Sourced from @​storybook/addon-a11y's changelog.

    6.5.15 (December 20, 2022)

    Bug Fixes

    • Support Angular 15.0.4 #20287
    • CLI: execute automigrations when pressing enter in the prompts #20208

    Maintenance

    • Ember: Remove global Ember usage #17843

    6.5.15-alpha.1 (December 20, 2022)

    Bug Fixes

    • Support Angular 15.0.4 #20287
    • CLI: execute automigrations when pressing enter in the prompts #20208

    6.5.15-alpha.0 (December 12, 2022)

    Maintenance

    • Ember: Remove global Ember usage #17843

    6.5.14 (December 2, 2022)

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043
    • CLI/React native: Fix addons template to import register instead of manager #19620

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    Dependency Upgrades

    • Upgrade loader-utils to 2.0.4 in storysource and source-loader #19891

    6.5.14-alpha.2 (December 2, 2022)

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043

    6.5.14-alpha.1 (November 27, 2022)

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    ... (truncated)

    Commits
    • feab19d v6.5.15
    • 075a8dd Update git head to 6.5.15-alpha.1, update yarn.lock [ci skip]
    • cfd775b v6.5.15-alpha.1
    • 9c19ef0 Update git head to 6.5.15-alpha.0, update yarn.lock [ci skip]
    • 095d6ad v6.5.15-alpha.0
    • ae06ca9 Update git head to 6.5.14, update yarn.lock [ci skip]
    • cf65eb7 v6.5.14
    • 6e1e6dd Update git head to 6.5.14-alpha.2, update yarn.lock [ci skip]
    • 71f07c4 v6.5.14-alpha.2
    • 885e7ac Update git head to 6.5.14-alpha.1, update yarn.lock [ci skip]
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 0
  • chore(deps-dev): bump @types/react from 18.0.20 to 18.0.26

    chore(deps-dev): bump @types/react from 18.0.20 to 18.0.26

    Bumps @types/react from 18.0.20 to 18.0.26.

    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 0
  • chore(deps): bump cypress-io/github-action from 4 to 5

    chore(deps): bump cypress-io/github-action from 4 to 5

    Bumps cypress-io/github-action from 4 to 5.

    Release notes

    Sourced from cypress-io/github-action's releases.

    v5.0.0

    5.0.0 (2022-12-2)

    Features

    BREAKING CHANGES

    v4.2.2

    4.2.2 (2022-11-28)

    Bug Fixes

    v4.2.1

    4.2.1 (2022-11-22)

    Bug Fixes

    v4.2.0

    4.2.0 (2022-07-27)

    Features

    • add support for pnpm (install and cache deps) (0ec9869)

    v4.1.1

    4.1.1 (2022-06-27)

    Bug Fixes

    • disable summary when it is not available (f036b8f)

    ... (truncated)

    Commits
    • c5724ed Merge pull request #637 from cypress-io/update-node-version
    • dcf1e6c add node v18 to test matrix, remove deprecated v12
    • 914f173 Merge pull request #641 from cypress-io/update-actions-readme-file
    • f36cae0 Update Dashboard references to Cloud
    • See full diff in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies github_actions 
    opened by dependabot[bot] 0
  • chore(deps): bump decode-uri-component from 0.2.0 to 0.2.2

    chore(deps): bump decode-uri-component from 0.2.0 to 0.2.2

    Bumps decode-uri-component from 0.2.0 to 0.2.2.

    Release notes

    Sourced from decode-uri-component's releases.

    v0.2.2

    • Prevent overwriting previously decoded tokens 980e0bf

    https://github.com/SamVerschueren/decode-uri-component/compare/v0.2.1...v0.2.2

    v0.2.1

    • Switch to GitHub workflows 76abc93
    • Fix issue where decode throws - fixes #6 746ca5d
    • Update license (#1) 486d7e2
    • Tidelift tasks a650457
    • Meta tweaks 66e1c28

    https://github.com/SamVerschueren/decode-uri-component/compare/v0.2.0...v0.2.1

    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) You can disable automated security fix PRs for this repo from the Security Alerts page.
    dependencies javascript 
    opened by dependabot[bot] 0
Owner
José Manuel Lucas
I love to break and fix things
José Manuel Lucas
Personal project to a student schedule classes according his course level. Using GraphQL, Clean Code e Clean Architecture.

classes-scheduler-graphql This is a personal project for student scheduling, with classes according his course level. I intend to make just the backen

Giovanny Lucas 6 Jul 9, 2022
💻 A simple Create Next App template to start your projects with Next.js, TypeScript, ESLint, Prettier and other tools.

⚡ Next Typescript Template ⚡ A simple Create Next App template to start your projects with Next.js, TypeScript, ESLint, Prettier and other tools. Quic

João Gabriel 13 Nov 23, 2022
Node-cli-starter - Basic starter kit for building Node CLI applications with TypeScript.

node-cli-starter Minimal starter kit for building Node CLI applications with TypeScript. Getting Started To get started clone repo locally and run npm

Cory Rylan 7 May 17, 2022
A simple, lightweight, clean and small library for creating guided product tours for your web app.

Tourguide.js Simple, lightweight library for creating guided tours for your web, apps and more. A tour guide is a person who provides assistance, info

Docsie.io 277 Dec 12, 2022
🛠 Solana Web3 Tools - A set of tools to improve the user experience on Web3 Solana Frontends.

?? Solana Web3 Tools - A set of tools to improve the user experience on Web3 Solana Frontends.

Holaplex 30 May 21, 2022
🚀 Blazing Fast S3 Powered CDN ✨ Powered By Fastify, S3 Buckets & Docker!

?? WasiCDN Blazing Fast S3 Powered CDN, Powered By Fastify, S3 Compatible Buckets & Docker! Core DockerHub: https://hub.docker.com/r/maximking19/wasic

Maxim 5 Aug 31, 2022
Get-A-Room example application using Domain Driven Design and Clean Architecture. Written in TypeScript and deployed to AWS with a serverless stack.

Domain Driven Microservices on AWS in Practice This project provides a Domain Driven Design & Clean Architecture-informed, multi-service event-driven

Mikael Vesavuori 5 Dec 31, 2022
Notion-powered blog starter with Nextjs and Tailwind

Nextjs Notion Blog Starter Default demo - Deployed from main branch Blog setup - I wrote an article on how to use this starter to start your blog My p

Tuan Phung 94 Dec 29, 2022
Notion-powered blog starter with Nextjs and Tailwind

Nextjs Notion Blog Starter Default demo - Deployed from main branch Blog setup - I wrote an article on how to use this starter to start your blog My p

Tuan Phung 63 Oct 11, 2022
Minimal, SEO-focused website starter kit powered by Notion, GitHub, and Vercel.

wr8 wr8 lets you create a website in Notion with better SEO. It is a customized version of nextjs-notion-starter-kit, based on NotionX. Introduction T

Verfasor 7 Dec 22, 2022
Next.js starter with TypeScript, Supabase and TailwindCSS

This project is a Next.js starter with: TypeScript Supabase TailwindCSS It is basically what is presented in the Supabase + Next.js quickstart, just w

Sébastien Castiel 32 Dec 24, 2022
Simple REST API using Express with TypeScript, PostgreSQL, and MySQL to practice the Clean Architecture by Uncle Bob.

Clean-Architecture Simple REST API using Express with TypeScript, PostgreSQL, and MySQL to practice the Clean Architecture by Uncle Bob. About This RE

Abdullah Adel 10 Oct 16, 2022
Next.js + Tailwind + Typescript + Prisma + NextAuth starter project

This is a Next.js project bootstrapped with create-next-app. Getting Started First, run the development server: npm run dev # or yarn dev Open http://

Steven Tey 106 Jan 3, 2023
🛫 TypeScript Starter template to simplify creating your next npm package.

TypeScript Starter Kit This is an opinionated TypeScript Starter kit to help kick-start development of your next npm package. ?? Get Started Luckily,

Open Web 7 Sep 27, 2022
🛫 TypeScript Starter template to simplify creating your next npm package.

TypeScript Starter Kit This is an opinionated TypeScript Starter kit to help kick-start development of your next npm package. ?? Get Started Luckily,

Open Web Foundation 5 May 19, 2022
Minimal Next.js + TypeScript + Tailwind CSS starter template.

⚡ next-ts-tailwind-starter ⚡ Minimal Next.js + TypeScript + Tailwind CSS starter template. Made by Piyush Pandey Give a ⭐ if you want to appreciate. 1

Piyush Pandey 3 Jun 28, 2022
An opinionated Next.js + Chakra + TypeScript starter

Nextjs + Chakra + Typescript Starter ✨ An opinionated Next.js + Chakra + TypeScript starter packed with: ⚡️ Next.js 12 ⚛️ React 18 ✨ TypeScript ?? Cha

jaclyn 3 Sep 17, 2022
Uma api para encurtador url com typescript e Clean architecture.

Lyck ?? ??️ Esta e a parte de backend de um encurtador de link que estou a desevolver. tecnologias ?? ??️ Express. Joi. Uuid. Module-alias. BcryptJs.

Yazalde Filimone 5 Jan 28, 2022
Project developed in typescript with clean architecture + tdd for demonstration purposes.

Description Project developed in typescript with clean architecture + tdd for demonstration purposes in Usystem. Installation $ yarn Running the app #

USystem - Desenvolvimento Ágil de Softwares 1 Oct 5, 2022