Merge branch 'main' into feat/separate-links

This commit is contained in:
Amruth Pillai
2024-05-20 17:01:16 +02:00
318 changed files with 36303 additions and 27864 deletions

View File

@ -9,9 +9,6 @@
"access": "public"
},
"dependencies": {
"@swc/helpers": "~0.5.6",
"zod": "^3.22.4",
"@reactive-resume/utils": "*",
"@paralleldrive/cuid2": "^2.2.2"
"@reactive-resume/utils": "*"
}
}

View File

@ -1,29 +0,0 @@
lockfileVersion: '6.0'
settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
dependencies:
'@swc/helpers':
specifier: ~0.5.2
version: 0.5.3
zod:
specifier: ^3.22.4
version: 3.22.4
packages:
/@swc/helpers@0.5.3:
resolution: {integrity: sha512-FaruWX6KdudYloq1AHD/4nU+UsMTdNE8CKyrseXWEcgjDAbvkwJg2QGPAnfIJLIWsjZOSPLOAykK6fuYp4vp4A==}
dependencies:
tslib: 2.6.2
dev: false
/tslib@2.6.2:
resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==}
dev: false
/zod@3.22.4:
resolution: {integrity: sha512-iC+8Io04lddc+mVqQ9AZ7OQ2MrUKGN+oIQyq1vemgt46jwCwLfhq7/pwnBnNXXXZb8VTVLKwp9EDkx+ryxIWmg==}
dev: false

View File

@ -7,6 +7,4 @@ export const customFieldSchema = z.object({
value: z.string(),
});
export const customFieldsDefault = [];
export type CustomField = z.infer<typeof customFieldSchema>;

View File

@ -9,7 +9,6 @@ export default defineConfig({
test: {
globals: true,
environment: "jsdom",
cache: { dir: "../../node_modules/.vitest" },
include: ["src/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}"],
},
});