commit inicial do projeto
Some checks failed
Test / test (macos-latest) (push) Waiting to run
Test / test (windows-latest) (push) Waiting to run
Test / test (ubuntu-latest) (push) Failing after 13m2s

This commit is contained in:
Junior
2026-04-21 18:18:56 -03:00
commit 15e6692647
187 changed files with 102037 additions and 0 deletions

19
.erb/scripts/clean.js Normal file
View File

@@ -0,0 +1,19 @@
const rimraf = require('rimraf');
const fs = require('fs');
const webpackPaths = require('../configs/webpack.paths').default;
const foldersToRemove = [
webpackPaths.distPath,
webpackPaths.buildPath,
webpackPaths.dllPath,
];
foldersToRemove.forEach((folder) => {
if (fs.existsSync(folder)) {
try {
rimraf.sync(folder);
} catch (error) {
console.log(`Warning: Could not remove ${folder}:`, error.message);
}
}
});