1
0
mirror of https://github.com/tabler/tabler.git synced 2025-12-21 17:34:25 +04:00

Add new color picker component using coloris.js library (#1575)

This commit is contained in:
Paweł Kuna
2023-05-16 23:38:55 +02:00
committed by GitHub
parent 0f129b1fce
commit be146073b9
13 changed files with 291 additions and 122 deletions

View File

@@ -448,7 +448,7 @@ gulp.task('copy-libs', (cb) => {
files.forEach((file) => {
if (!file.match(/^https?/)) {
let dirname = path.dirname(file).replace('@', '')
let cmd = `mkdir -p "${distDir}/libs/${dirname}" && cp -r node_modules/${dirname}/* ${distDir}/libs/${dirname}`
let cmd = `mkdir -p "${distDir}/libs/${dirname}" && cp -r node_modules/${path.dirname(file)}/* ${distDir}/libs/${dirname}`
cp.exec(cmd)
}