Skip to content

Commit

Permalink
Removes Yarn in favour of NPM. Updates nakama-js, nakama-js-prototbuf… (
Browse files Browse the repository at this point in the history
#143)

* Removes Yarn in favour of NPM. Updates nakama-js, nakama-js-prototbuf and satori-js build scripts and dependencies. Updates documentation to include satori-js.

* Updates satori-js dependencies

* Updates nakama readme to refer to npm instead of yarn

* Updates READMEs
  • Loading branch information
tomglenn committed Jan 19, 2023
1 parent 41440eb commit 9d3cca5
Show file tree
Hide file tree
Showing 169 changed files with 20,588 additions and 47,561 deletions.
29 changes: 0 additions & 29 deletions .yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs

This file was deleted.

55 changes: 0 additions & 55 deletions .yarn/releases/yarn-2.4.0.cjs

This file was deleted.

9 changes: 0 additions & 9 deletions .yarnrc.yml

This file was deleted.

19 changes: 13 additions & 6 deletions docs/assets/highlight.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,12 @@
--dark-hl-6: #DCDCAA;
--light-hl-7: #0070C1;
--dark-hl-7: #4FC1FF;
--light-hl-8: #267F99;
--dark-hl-8: #4EC9B0;
--light-hl-9: #098658;
--dark-hl-9: #B5CEA8;
--light-hl-8: #098658;
--dark-hl-8: #B5CEA8;
--light-hl-9: #267F99;
--dark-hl-9: #4EC9B0;
--light-hl-10: #EE0000;
--dark-hl-10: #D7BA7D;
--light-code-background: #FFFFFF;
--dark-code-background: #1E1E1E;
}
Expand All @@ -34,6 +36,7 @@
--hl-7: var(--light-hl-7);
--hl-8: var(--light-hl-8);
--hl-9: var(--light-hl-9);
--hl-10: var(--light-hl-10);
--code-background: var(--light-code-background);
} }

Expand All @@ -48,10 +51,11 @@
--hl-7: var(--dark-hl-7);
--hl-8: var(--dark-hl-8);
--hl-9: var(--dark-hl-9);
--hl-10: var(--dark-hl-10);
--code-background: var(--dark-code-background);
} }

body.light {
:root[data-theme='light'] {
--hl-0: var(--light-hl-0);
--hl-1: var(--light-hl-1);
--hl-2: var(--light-hl-2);
Expand All @@ -62,10 +66,11 @@ body.light {
--hl-7: var(--light-hl-7);
--hl-8: var(--light-hl-8);
--hl-9: var(--light-hl-9);
--hl-10: var(--light-hl-10);
--code-background: var(--light-code-background);
}

body.dark {
:root[data-theme='dark'] {
--hl-0: var(--dark-hl-0);
--hl-1: var(--dark-hl-1);
--hl-2: var(--dark-hl-2);
Expand All @@ -76,6 +81,7 @@ body.dark {
--hl-7: var(--dark-hl-7);
--hl-8: var(--dark-hl-8);
--hl-9: var(--dark-hl-9);
--hl-10: var(--dark-hl-10);
--code-background: var(--dark-code-background);
}

Expand All @@ -89,4 +95,5 @@ body.dark {
.hl-7 { color: var(--hl-7); }
.hl-8 { color: var(--hl-8); }
.hl-9 { color: var(--hl-9); }
.hl-10 { color: var(--hl-10); }
pre, code { background: var(--code-background); }
Loading

0 comments on commit 9d3cca5

Please sign in to comment.