chore: fix paths

This commit is contained in:
Liam DeBeasi
2024-03-08 01:46:32 +00:00
parent bef3e77f01
commit c200c36f11
4 changed files with 14 additions and 14 deletions

View File

@ -2,12 +2,12 @@ const fs = require('fs-extra');
const path = require('path');
/**
* Copy the CSS from the core package to the react package.
*
*
* This allows developers to import the global stylesheets
* from the @ionic/react package instead of @ionic/core.
* from the @ionic/react package instead of @ionic/core.
*/
function copyCSS() {
const src = path.join(__dirname, '..', '..', '..', 'core', 'css');
const src = path.join(__dirname, '..', '..', 'core', 'css');
const dst = path.join(__dirname, '..', 'css');
fs.removeSync(dst);