mirror of
https://gitee.com/maimengcloud/xm-ui-web.git
synced 2025-12-30 10:12:26 +00:00
7 lines
310 B
JavaScript
7 lines
310 B
JavaScript
const path = require('path')
|
|
const fs = require('fs')
|
|
|
|
const libPackagePath = path.join(__dirname, 'src/plugins/datav/patch/package.json')
|
|
const modulesPackagePath = path.join(__dirname, 'node_modules/@dataview/datav-vue3/package.json')
|
|
|
|
fs.writeFileSync(modulesPackagePath, fs.readFileSync(libPackagePath))
|