mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2026-07-24 08:54:05 +10:00
- bump up version to 4.0.6
- update dependencies - remove test phase from CI script - lint and format all files
This commit is contained in:
@@ -9,10 +9,10 @@
|
||||
"access": "public"
|
||||
},
|
||||
"dependencies": {
|
||||
"@swc/helpers": "~0.5.2",
|
||||
"@swc/helpers": "~0.5.6",
|
||||
"dayjs": "^1.11.10",
|
||||
"clsx": "^2.0.0",
|
||||
"tailwind-merge": "^2.0.0",
|
||||
"clsx": "^2.1.0",
|
||||
"tailwind-merge": "^2.2.1",
|
||||
"papaparse": "^5.4.1",
|
||||
"unique-names-generator": "^4.7.1"
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
export const hexToRgb = (hex: string, alpha: number = 0) => {
|
||||
export const hexToRgb = (hex: string, alpha = 0) => {
|
||||
const r = parseInt(hex.slice(1, 3), 16),
|
||||
g = parseInt(hex.slice(3, 5), 16),
|
||||
b = parseInt(hex.slice(5, 7), 16);
|
||||
|
||||
@@ -8,16 +8,16 @@
|
||||
"noImplicitOverride": true,
|
||||
"noPropertyAccessFromIndexSignature": true,
|
||||
"noImplicitReturns": true,
|
||||
"noFallthroughCasesInSwitch": true,
|
||||
"noFallthroughCasesInSwitch": true
|
||||
},
|
||||
"files": [],
|
||||
"include": [],
|
||||
"references": [
|
||||
{
|
||||
"path": "./tsconfig.lib.json",
|
||||
"path": "./tsconfig.lib.json"
|
||||
},
|
||||
{
|
||||
"path": "./tsconfig.spec.json",
|
||||
},
|
||||
],
|
||||
"path": "./tsconfig.spec.json"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user