mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-15 01:03:03 +08:00
feat(vue): add ionic vue beta (#22062)
This commit is contained in:
16
packages/vue/scripts/copy-css.js
Normal file
16
packages/vue/scripts/copy-css.js
Normal file
@ -0,0 +1,16 @@
|
||||
const fs = require('fs-extra');
|
||||
const path = require('path');
|
||||
|
||||
function copyCSS() {
|
||||
const src = path.join(__dirname, '..', '..', '..', 'core', 'css');
|
||||
const dst = path.join(__dirname, '..', 'css');
|
||||
|
||||
fs.removeSync(dst);
|
||||
fs.copySync(src, dst);
|
||||
}
|
||||
|
||||
function main() {
|
||||
copyCSS();
|
||||
}
|
||||
|
||||
main();
|
Reference in New Issue
Block a user