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

Refactor, move from react-scripts to vite #333

Open
wants to merge 28 commits into
base: dev
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
90f5c9c
fix: vendor vis-network-react, update failing test
mihirsamdarshi May 10, 2024
01a767c
fix: add corepack enable to Dockerfile
mihirsamdarshi May 10, 2024
da6ade6
feat: add vite-plugin-image-optimizer
mihirsamdarshi May 10, 2024
e4b3509
chore: rename .prettierrc
mihirsamdarshi Apr 23, 2024
f87bdad
refactor: move from react-scripts to vite
mihirsamdarshi Apr 23, 2024
a180b2f
chore: update .gitignore
mihirsamdarshi Apr 23, 2024
bc5680c
refactor: update motrpac-frontend to use react-router-dom
mihirsamdarshi Apr 23, 2024
5c3c1be
feat: update storybook config
mihirsamdarshi Apr 23, 2024
25d1366
test: update test to use Vitest
mihirsamdarshi Apr 23, 2024
0e174e4
chore: remove error-causing args from CircleCI config
mihirsamdarshi May 2, 2024
5319e4c
fix: update linting configurations
mihirsamdarshi May 3, 2024
a450cd3
feat: update to React 18
mihirsamdarshi May 3, 2024
ce6168f
build(ci): disable yarn caching until actions/setup-node#1027 is reso…
mihirsamdarshi May 3, 2024
6ea174c
feat: add rollup-plugin-visualizer
mihirsamdarshi May 3, 2024
a21d6b1
feat: add manual chunking for vis-network-react
mihirsamdarshi May 4, 2024
da0ed2f
fix: add preconnection to fonts.googleapis.com
mihirsamdarshi Jul 8, 2024
ab89bf3
refactor: scope styles to each page/component, add purgeCSS
mihirsamdarshi Jul 8, 2024
e3b1138
Merge branch 'dev' into refactor/vite
mihirsamdarshi Jul 9, 2024
41c4b22
fix: ensure consistent naming of environment variables
mihirsamdarshi Jul 23, 2024
43d12a5
Merge branch 'dev' into refactor/vite
mihirsamdarshi Jul 23, 2024
ca6b6f6
fix: only run purgeCSS during build
mihirsamdarshi Jul 23, 2024
9d4c146
fix: import createRoot from react-dom/client
mihirsamdarshi Jul 23, 2024
e513730
fix: add back React Helmet to Project Overview page
mihirsamdarshi Jul 24, 2024
c5b36f4
refactor: replace deprecated defaultProps with object default syntax
mihirsamdarshi Jul 24, 2024
7a794d0
fix: fix CSS issues by removing PurgeCSS
mihirsamdarshi Jul 24, 2024
ac0fe1e
fix: fix dashboard auth redirection
mihirsamdarshi Jul 24, 2024
c2a5173
chore: update Dockerfile to use latest NGINX version
mihirsamdarshi Jul 24, 2024
f9e092d
fix: tag image as latest in build_and_push.sh
mihirsamdarshi Jul 24, 2024
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
Prev Previous commit
Next Next commit
build(ci): disable yarn caching until actions/setup-node#1027 is reso…
…lved
mihirsamdarshi committed Jul 1, 2024
commit ce6168ff9a9867eeeb1401dd4067d1ae4cf5dedc
10 changes: 8 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -15,11 +15,14 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Run corepack enable
run: corepack enable

- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: yarn
# cache: yarn

- name: Install project
run: yarn install --frozen-lockfile
@@ -37,11 +40,14 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Run corepack enable
run: corepack enable

- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: yarn
# cache: yarn

- name: Install project
run: yarn install --frozen-lockfile