Skip to content

Commit 4a83d43

Browse files
authored
Vite all the things (#460)
* Work in progress on vite-ing * WIP * Fix up tests * Vite all the things * Test sweet
1 parent c95bda7 commit 4a83d43

File tree

153 files changed

+3093
-7110
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

153 files changed

+3093
-7110
lines changed

.github/workflows/test-and-deploy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,4 @@ jobs:
5858
AWS_S3_BUCKET: bbc.xania.org
5959
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
6060
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
61-
SOURCE_DIR: "out/dist"
61+
SOURCE_DIR: "dist"

.gitignore

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@
88
/perf.data
99
.eslintcache
1010
**/.DS_Store
11-
12-
coverage
11+
coverage
12+
/dist

.vscode/launch.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
{
55
"type": "chrome",
66
"request": "launch",
7-
"name": "Debug a running webpack dev server",
7+
"name": "Debug a running dev server",
88
"url": "http://localhost:8080?logFdcStateChanges&logFdcCommands&model=MasterADFS&disc=CodenameDroid-ADFS_E.adf",
99
"webRoot": "${workspaceFolder}",
1010
"sourceMaps": true,

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ dist: npm
2323

2424
.PHONY: clean
2525
clean:
26-
@rm -rf out
26+
@rm -rf dist out
2727

2828
.PHONY: spotless
2929
spotless: clean

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ case), press shift-F12 (which is shift-Break on the BBC).
5656
```
5757
4. Visit `http://localhost:8080/` in your browser.
5858

59-
jsbeeb uses Node.js and webpack to afford simple and standard web development tooling and third-party library access
59+
jsbeeb uses Node.js and vite to afford simple and standard web development tooling and third-party library access
6060
without lots of painful copy/paste or wheel-reinventing, as well as the ability to better run tests, and "pack" up the
6161
site to make it smaller and faster to load when it's deployed to [https://bbc.xania.org](https://bbc.xania.org).
6262

eslint.config.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,13 @@ import js from "@eslint/js";
44
import globals from "globals";
55

66
export default [
7+
{
8+
ignores: ["lib/", "out/", "dist/"],
9+
},
710
js.configs.recommended,
811
eslintConfigPrettier,
912
{
1013
plugins: { prettier },
11-
ignores: ["lib/", "out/"],
1214
languageOptions: {
1315
parserOptions: {
1416
ecmaVersion: 2020,

index.html

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
/>
2323
<title>jsbeeb - Javascript BBC Micro emulator</title>
2424
<link rel="shortcut icon" href="/favicon.ico" />
25+
<script type="module" src="/src/main.js"></script>
2526
</head>
2627

2728
<body>

0 commit comments

Comments
 (0)