Skip to content

Commit 94c8643

Browse files
committed
Dismantle the old route-info WASM library. See #361.
1 parent 3b50cb3 commit 94c8643

13 files changed

+9
-1380
lines changed

.github/workflows/playwright.yml

-9
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,6 @@ jobs:
2424
- name: Install dependencies
2525
run: npm ci
2626

27-
- name: Cache WASM build
28-
uses: actions/cache@v3
29-
with:
30-
path: route_info/target
31-
key: doesnt-matter-share-everything-for-tests
32-
33-
- name: Build WASM
34-
run: npm run wasm-release
35-
3627
- name: Build schema TS files
3728
run: npm run generate-schema-ts
3829

.github/workflows/web.yml

+1-7
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,6 @@ jobs:
2323
- name: Install wasm-pack
2424
uses: jetli/[email protected]
2525

26-
- name: Cache WASM build
27-
uses: actions/cache@v3
28-
with:
29-
path: route_info/target
30-
key: doesnt-matter-share-everything
31-
3226
- name: Build all branches
3327
run: |
3428
mkdir deployme
@@ -45,7 +39,7 @@ jobs:
4539
base=/atip/$branch
4640
fi
4741
48-
if npm ci && npm run wasm-release && npm run setup-govuk && npm run generate-schema-ts && npm run build -- --base=$base; then
42+
if npm ci && npm run setup-govuk && npm run generate-schema-ts && npm run build -- --base=$base; then
4943
if [ "$branch" == "main" ]; then
5044
mv dist/* deployme
5145
else

docs/developer_guide.md

+5-10
Original file line numberDiff line numberDiff line change
@@ -42,23 +42,18 @@ These are some resources to learn languages and libraries used in ATIP. Feel fre
4242

4343
## Installation
4444

45-
To run locally you'll need:
46-
[npm](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm) and
47-
[wasm-pack](https://github.com/rustwasm/wasm-pack) ([quick-start](https://rustwasm.github.io/wasm-pack/book/quickstart.html)). Wasm pack depends on [Rust](https://www.rust-lang.org/tools/install) and gcc. Rust is covered in the wasm quick start guide but gcc can be installed using `apt install build-essential` for Ubuntu, at least.
45+
To run locally you'll need [npm](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm).
4846

4947
- `npm install` to install dependencies
50-
- `npm run wasm` to rebuild the `route_info` Rust library quickly (or
51-
`wasm-release` to build slowly but run quickly)
52-
- If you're modifying the Rust code, a handy command is `npm run wasm && npm run dev`
5348
- `npm run generate-schema-ts` to rebuild TS definitions from changes to `src/schemas/*.json`
5449
- `npm run setup-govuk` to rerun Sass and generate GOV.UK styles
5550
- `npm run dev` to run ATIP locally (N.B. you need to run all the above commands before running this command)
5651
- To mimic GCP deployment and see private layers locally, follow instructions in `.env` and run `VITE_RESOURCE_BASE="" VITE_MIMIC_GCP_LOCALLY="true" npm run dev`
5752
- `npm run fmt` to auto-format code
5853
- `npm run check` to see TypeScript errors
5954

60-
Upon first setup, you'll need to `npm run wasm`, `npm run generate-schema-ts`,
61-
`npm run setup-govuk` to get all mandatory files for running.
55+
Upon first setup, you'll need to `npm run generate-schema-ts` and `npm run
56+
setup-govuk` to get all mandatory files for running.
6257

6358
If you're using Firefox locally to develop and get "import declarations may
6459
only appear at top level" errors, upgrade to at least Firefox 112, go to
@@ -75,9 +70,9 @@ Once you've installed these you can:
7570

7671
1. Open VSCode
7772
2. Press F1 to open input command at top of window
78-
3. Run `Dev Containers: Open Folder in Container`, and select the `atip` folder
73+
3. Run `Dev Containers: Open Folder in Container`, and select the `atip` folder
7974
4. Press the plus on the top right of the terminal subwindow at the bottom of VSCode (by default) to open a terminal in your docker container
80-
5. Run `npm install`, `npm run wasm`, then `npm run dev` and you should have ATIP running on your docker image, VS Code should prompt you with a link to open it in your browser
75+
5. Run `npm install`, `npm run dev`, and then you should have ATIP running on your docker image. VS Code should prompt you with a link to open it in your browser.
8176

8277
### Monkey-patching dependencies
8378

package-lock.json

-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

-3
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@
66
"scripts": {
77
"dev": "vite",
88
"build": "vite build",
9-
"wasm": "wasm-pack build --dev --target web ./route_info",
10-
"wasm-release": "wasm-pack build --release --target web ./route_info",
119
"preview": "vite preview",
1210
"fmt": "npx prettier --write *.html tests/* src/*",
1311
"test": "npx playwright test",
@@ -46,7 +44,6 @@
4644
"@turf/nearest-point-on-line": "^6.5.0",
4745
"@turf/random": "^6.5.0",
4846
"@types/geojson": "^7946.0.10",
49-
"comlink": "^4.4.1",
5047
"govuk-frontend": "^4.6.0",
5148
"humanize-string": "^3.0.0",
5249
"js-cookie": "^3.0.5",

0 commit comments

Comments
 (0)