deno.land / x / lodash@4.17.19 / lib / main / build-dist.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
'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();
lodash

Version Info

Tagged at
3 years ago

External Dependencies

No external dependencies 🎉