mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-15 01:03:03 +08:00
17 lines
295 B
JavaScript
17 lines
295 B
JavaScript
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();
|