Maxime Delporte 51ea013bc3
All checks were successful
Deploying Website / build (push) Successful in 16s
first commit
2025-04-04 18:47:44 -03:00

10 lines
397 B
JavaScript

const fs = require('fs-extra');
const path = require('path');
(async () => {
await fs.copy(path.resolve(__dirname, "./node_modules/line-awesome/src/production"),
path.resolve(__dirname, "./assets/image/line-awesome"));
await fs.copy(path.resolve(__dirname, "./node_modules/include-media/dist/_include-media.scss"),
path.resolve(__dirname, "./assets/scss/_include-media.scss"));
})();