- 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:
Amruth Pillai
2024-03-10 10:35:23 +01:00
parent ec77d13ebd
commit b47b7824ff
23 changed files with 65 additions and 69 deletions
+3 -3
View File
@@ -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 -1
View File
@@ -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);
+5 -5
View File
@@ -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"
}
]
}