mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-02-23 13:31:06 +08:00
* wip: date-fns esm * wip: build script for date fns * wip: fix build script * wip: fix build script * wip: fix build script * docs: changelog
11 lines
256 B
JavaScript
11 lines
256 B
JavaScript
// replace lodash-es
|
|
const { replaceDefine, srcDir } = require('../utils')
|
|
|
|
;(async () => {
|
|
await replaceDefine([srcDir], {
|
|
"'lodash-es'": "'lodash'",
|
|
"'date-fns/esm(.*)'": "'date-fns$1'",
|
|
"'date-fns-tz/esm(.*)'": "'date-fns-tz$1'"
|
|
})
|
|
})()
|