Skip to content

Commit

Permalink
eslint: ignore dist linting!
Browse files Browse the repository at this point in the history
  • Loading branch information
zardoy committed Sep 11, 2024
1 parent 4d3c92f commit 76bed4d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ rsbuild.config.ts
*.module.css.d.ts
*.generated.ts
generated
dist
public
2 changes: 1 addition & 1 deletion assets/playground.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!-- just redirect to /playground -->
<script>
window.location.href = '/playground'
window.location.href = `/playground${window.location.search}`
</script>
1 change: 1 addition & 0 deletions rsbuild.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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'))
Expand Down

0 comments on commit 76bed4d

Please sign in to comment.