Skip to content

Commit b338b00

Browse files
committed
Fix Clock.css missing from build folder
1 parent 8f6712c commit b338b00

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

copy-styles.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,11 @@ fs.copyFile('./src/Clock.less', 'build/Clock.less', (error) => {
77
// eslint-disable-next-line no-console
88
console.log('Clock.less copied successfully.');
99
});
10+
11+
fs.copyFile('./src/Clock.css', 'build/Clock.css', (error) => {
12+
if (error) {
13+
throw error;
14+
}
15+
// eslint-disable-next-line no-console
16+
console.log('Clock.css copied successfully.');
17+
});

0 commit comments

Comments
 (0)