Home
last modified time | relevance | path

Searched refs:destPath (Results 1 – 3 of 3) sorted by relevance

/plugin/sequencediagram/bower_components/lodash/lib/common/
Dminify.js24 function minify(srcPath, destPath, callback, options) { argument
25 if (_.isFunction(destPath)) {
29 callback = destPath;
30 destPath = undefined;
32 if (!destPath) {
33 destPath = srcPath.replace(/(?=\.js$)/, '.min');
36 fs.writeFile(destPath, output.code, 'utf-8', callback);
Dfile.js21 function copy(srcPath, destPath) { argument
22 return _.partial(fs.copy, srcPath, destPath);
47 function min(srcPath, destPath) { argument
48 return _.partial(minify, srcPath, destPath);
60 function write(destPath, data) { argument
61 return _.partial(fs.writeFile, destPath, data);
/plugin/deletepageguard/build/
H A Dcreate-dist.php69 $destPath = $dest . '/' . $relativePath;
72 if (!is_dir($destPath)) {
73 mkdir($destPath, 0755, true);
76 $destDir = dirname($destPath);
80 copy($currentPath, $destPath);
96 $destPath = $targetDir . '/' . $file; variable
97 if (copyFileOrDir($file, $destPath)) {