Skip to content
This repository was archived by the owner on Jan 30, 2025. It is now read-only.

Commit eb960e4

Browse files
committed
fix(clean-up.ts): bug In the range of 3.2.7 to 3.3.0
1 parent f9ba820 commit eb960e4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

compiler/src/clean-up.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ import { join } from 'path';
33

44
export const cleanUp = async () => {
55
const styleFilePath = join(__dirname, '../../dist/core/styles/style.module.css');
6-
const globalFilePath = join(__dirname, '../../dist/core/styles/style.module.css');
6+
const globalFilePath = join(__dirname, '../../dist/core/styles/global.css');
77
try {
8-
writeFileSync(styleFilePath, '/*______________________________*/', 'utf-8');
9-
writeFileSync(globalFilePath, '/*______________________________*/', 'utf-8');
8+
writeFileSync(styleFilePath, '', 'utf-8');
9+
writeFileSync(globalFilePath, '', 'utf-8');
1010
} catch (err) {
1111
console.error('An error occurred:', err);
1212
}

0 commit comments

Comments
 (0)