mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-13 08:13:49 +10:00
Implement Turborepo to include Build Caching in CI/CD
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
import { User } from '@reactive-resume/schema';
|
||||
import { createSlice, PayloadAction } from '@reduxjs/toolkit';
|
||||
import { User } from 'schema';
|
||||
|
||||
type AuthState = {
|
||||
user: User | null;
|
||||
|
||||
@ -1,10 +1,10 @@
|
||||
import { ListItem, Profile, Resume, Section, SectionType } from '@reactive-resume/schema';
|
||||
import { createSlice, PayloadAction } from '@reduxjs/toolkit';
|
||||
import cloneDeep from 'lodash/cloneDeep';
|
||||
import get from 'lodash/get';
|
||||
import merge from 'lodash/merge';
|
||||
import pick from 'lodash/pick';
|
||||
import set from 'lodash/set';
|
||||
import { ListItem, Profile, Resume, Section, SectionType } from 'schema';
|
||||
import { v4 as uuidv4 } from 'uuid';
|
||||
|
||||
import { getSectionsByType } from '@/config/sections';
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
import { Resume } from '@reactive-resume/schema';
|
||||
import debounce from 'lodash/debounce';
|
||||
import { select, takeLatest } from 'redux-saga/effects';
|
||||
import { Resume } from 'schema';
|
||||
|
||||
import { updateResume } from '@/services/resume';
|
||||
import { AppDispatch, RootState } from '@/store/index';
|
||||
|
||||
Reference in New Issue
Block a user