eslint: ignore dist linting!

This commit is contained in:
Vitaly Turovsky 2024-09-11 03:34:55 +03:00
commit 76bed4d496
3 changed files with 3 additions and 1 deletions

View file

@ -3,4 +3,5 @@ rsbuild.config.ts
*.module.css.d.ts
*.generated.ts
generated
dist
public

View file

@ -1,4 +1,4 @@
<!-- just redirect to /playground -->
<script>
window.location.href = '/playground'
window.location.href = `/playground${window.location.search}`
</script>

View file

@ -77,6 +77,7 @@ const appConfig = defineConfig({
fsExtra.copySync('./node_modules/mc-assets/dist/other-textures/latest/entity', './dist/textures/entity')
fsExtra.copySync('./assets/background', './dist/background')
fs.copyFileSync('./assets/favicon.png', './dist/favicon.png')
fs.copyFileSync('./assets/playground.html', './dist/playground.html')
fs.copyFileSync('./assets/manifest.json', './dist/manifest.json')
fs.copyFileSync('./assets/loading-bg.jpg', './dist/loading-bg.jpg')
const configJson = JSON.parse(fs.readFileSync('./config.json', 'utf8'))