Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Standardize FontAwesome #499

Merged
merged 4 commits into from
Nov 2, 2021
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,17 @@ If you wish to run tests locally, you will need to ensure that `redis-server` is

Once Redis is installed, run our entire test suite with `yarn test`.

### Windows 10 Installation on Windows Subsystem for Linux 2

1. First [Install WSL2](https://docs.microsoft.com/en-us/windows/wsl/install) choosing Ubuntu or distribution of choice.
2. [Install NVM](https://simplernerd.com/install-node-npm-wsl2/) to allow for different versions of Node. This will also install NPM.
3. Install version 14.3.0 by running `nvm install 14.3.0`.
4. If you install multiple versions run `nvm use 14.3.0` to switch to the version used by Upswyng.
5. Install yarn globally using npm with `sudo npm install -g yarn`.
6. [Install Docker Desktop](https://docs.docker.com/desktop/windows/install/) for Windows with WSL2 support. Note that it's important to do this after installing WSL2.
7. Fork or clone the repository into a folder native to Linux and not the Windows system. This avoids problems with line ending differences between Windows and Linux. It is also much faster to access the Linux filesystem directly rather than the Windows filesystem through Linux.
8. Run `yarn start:local` as noted above.

### Troubleshooting

#### The engine "node" is incompatible with this module.
Expand Down
2 changes: 1 addition & 1 deletion packages/server/src/routes/provider/alert/create.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@
iconSearchResults = [];
const query = `{
search(
version: "5.12.1",
version: "5.14.0",
query: "${iconSearchTerm}",
first: 16
) { id, Membership { free } }
Expand Down
2 changes: 1 addition & 1 deletion packages/server/src/template.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
%sapper.head%
<script
defer
src="https://use.fontawesome.com/releases/v5.12.1/js/all.js"
src="https://use.fontawesome.com/releases/v5.14.0/js/all.js"
></script>
</head>
<body>
Expand Down