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

Upgrade to @ariakit, Modernize RRE, Part 1 #126

Merged
merged 1 commit into from
Jan 28, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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 .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ module.exports = {
"plugin:prettier/recommended",
"plugin:react/recommended",
"plugin:@typescript-eslint/recommended",
"plugin:storybook/recommended"
],
parser: "@typescript-eslint/parser",
parserOptions: {
Expand Down
4 changes: 2 additions & 2 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
* @idreyn @vickymmcd @austinjpaul @mathcolo
* @transitmatters/labs-leads @idreyn @vickymmcd @austinjpaul @mathcolo
/.github/ @idreyn @vickymmcd @austinjpaul @mathcolo @nathan-weinberg
/devops/ @idreyn @vickymmcd @austinjpaul @mathcolo @nathan-weinberg
/devops/ @idreyn @vickymmcd @austinjpaul @mathcolo @nathan-weinberg
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,5 @@ inventory
# private keys
*.pem

/.idea
/.idea
*storybook.log
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
legacy-peer-deps=true
9 changes: 0 additions & 9 deletions .storybook/config.js

This file was deleted.

7 changes: 0 additions & 7 deletions .storybook/main.js

This file was deleted.

22 changes: 22 additions & 0 deletions .storybook/main.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
module.exports = {
addons: [
'@storybook/addon-actions/register',
'@storybook/addon-viewport/register',
'@storybook/addon-knobs/register',
],

stories: ['../src/components/**/*.stories.@(js|jsx|ts|tsx)'],

framework: {
name: '@storybook/nextjs',
options: {}
},

docs: {
autodocs: true
},

typescript: {
reactDocgen: 'react-docgen-typescript'
}
};
37 changes: 0 additions & 37 deletions .storybook/webpack.config.js

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ The Regional Rail Explorer is a tool to demonstrate the impact of Regional Rail

## Setup
Ensure you have the following dependencies installed:
- [`node`](https://nodejs.org/en/) `16.x`
- [`node`](https://nodejs.org/en/) `20.x`
- [`npm`](https://www.npmjs.com/)

### Local Deployment
Expand Down
Loading
Loading