@lotte-innovate/ui-component-test 0.2.14 → 0.2.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/post-tinymce.js +4 -3
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@lotte-innovate/ui-component-test",
3
3
  "description": "Lotte UI Library",
4
- "version": "0.2.14",
4
+ "version": "0.2.16",
5
5
  "private": false,
6
6
  "type": "module",
7
7
  "files": [
package/post-tinymce.js CHANGED
@@ -4,11 +4,12 @@ import { fileURLToPath } from 'url';
4
4
 
5
5
  const __filename = fileURLToPath(import.meta.url);
6
6
  const __dirname = path.dirname(__filename);
7
+ const projectRoot = process.cwd();
7
8
 
8
- const sourceFile = path.join(__dirname, 'public/tinymce/skins/ui/oxide/content.min.css');
9
- const destinationFile = path.join(__dirname, '../../public/tinymce/skins/ui/oxide/content.min.css');
9
+ const sourceFile = path.join(__dirname, '../public/tinymce/skins/ui/oxide/content.min.css');
10
+ const destinationFile = path.join(projectRoot, 'public/tinymce/skins/ui/oxide/content.min.css');
10
11
 
11
- console.log(`디렉토리 경로 ${__dirname}`);
12
+ console.log(`현재 작업 디렉토리: ${projectRoot}`);
12
13
 
13
14
  // sourceDir이 존재하지 않으면 로직 중단
14
15
  if (!fs.existsSync(sourceFile)) {