Skip to content

Commit

Permalink
chore: general file refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
Joabesv committed Dec 7, 2024
1 parent a7cee79 commit 1dd36d7
Show file tree
Hide file tree
Showing 11 changed files with 8 additions and 376 deletions.
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1 +1 @@
nodejs latest
nodejs 23.3.0
361 changes: 0 additions & 361 deletions src/components/ReviewSubject.vue

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { normalizeDiacritics } from "@/utils/removeDiacritics";
import { extractCredits } from "@/utils/extractCredits";
import { normalizeDiacritics } from "@/utils/remove-diacritics";
import { extractCredits } from "@/utils/extract-credits";

export function scrapeClassesPage(page: string) {
const parser = new DOMParser();
Expand Down
8 changes: 4 additions & 4 deletions src/scripts/sig/homepage.ts
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
import { fetchGrades, fetchClasses, getUFStudent } from '@/services/uf-sig';
import { normalizeDiacritics } from '@/utils/removeDiacritics';
import { normalizeDiacritics } from '@/utils/remove-diacritics';
import {
getUFCourseCurriculums,
getUFCourses,
getUFCurriculumComponents,
type UFComponent,
type UFCourseCurriculum,
} from '@/services/ufabc-parser';
import { transformCourseName, type Course } from '@/utils/transformCourse';
import { capitalizeStr } from '@/utils/capitalizeStr';
import { transformCourseName, type Course } from '@/utils/transform-course';
import { capitalizeStr } from '@/utils/capitalize-Str';
import { getStudentHistory } from '@/services/next';
import { scrapeClassesPage } from './classesPage';
import { scrapeClassesPage } from './classes-page';

type SigStudent = {
matricula: string;
Expand Down
Loading

0 comments on commit 1dd36d7

Please sign in to comment.