deno.land / x / lodash@4.17.19 / lib / main / build-modules.js

build-modules.js
نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
'use strict';
const _ = require('lodash');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 filePairs = [ [path.join(distPath, 'lodash.core.js'), 'core.js'], [path.join(distPath, 'lodash.core.min.js'), 'core.min.js'], [path.join(distPath, 'lodash.min.js'), 'lodash.min.js']];
/*----------------------------------------------------------------------------*/
/** * Creates supplementary Lodash modules at the `target` path. * * @private * @param {string} target The output directory path. */function build(target) { const actions = _.map(filePairs, pair => file.copy(pair[0], path.join(target, pair[1])));
async.series(actions, util.pitch);}
build(_.last(process.argv));
lodash

Version Info

Tagged at
3 years ago

External Dependencies

No external dependencies 🎉