Skip to content

Commit

Permalink
next-client done
Browse files Browse the repository at this point in the history
  • Loading branch information
nishkohli96 committed Feb 11, 2024
1 parent 8d6f6c8 commit cc37a3e
Show file tree
Hide file tree
Showing 7 changed files with 3,332 additions and 3,917 deletions.
8 changes: 8 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
node_modules
dist
build
coverage
.next
.turbo
.eslintrc.js
*.d.ts
1 change: 1 addition & 0 deletions apps/frontend/src/redux-store/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ export * from './hooks';
export * from './reducers';
export * from './services';
export * from './store';
export * from './types';
2 changes: 0 additions & 2 deletions apps/frontend/src/redux-store/store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,3 @@ export const store = configureStore({
});

export const persistor = persistStore(store);
export type RootState = ReturnType<typeof store.getState>;
export type AppDispatch = typeof store.dispatch;
4 changes: 4 additions & 0 deletions apps/frontend/src/redux-store/types.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import { store } from './store';

export type RootState = ReturnType<typeof store.getState>;
export type AppDispatch = typeof store.dispatch;
2 changes: 1 addition & 1 deletion apps/nestjs-server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nestjs-server",
"version": "0.0.1",
"version": "1.0.0",
"description": "",
"author": "Nishant Kohli",
"private": true,
Expand Down
2 changes: 1 addition & 1 deletion apps/next-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "next-client",
"version": "0.1.0",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
Expand Down
7,230 changes: 3,317 additions & 3,913 deletions yarn.lock

Large diffs are not rendered by default.

0 comments on commit cc37a3e

Please sign in to comment.