Skip to content

Commit

Permalink
Lots of dialog polish
Browse files Browse the repository at this point in the history
  • Loading branch information
curiousdannii committed Oct 7, 2024
1 parent 354042f commit 5f65828
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
12 changes: 10 additions & 2 deletions build.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,6 @@ if (projects.includes('web')) {
glulxe: 'node_modules/emglken/build/glulxe.*',
hugo: 'node_modules/emglken/build/hugo.*',
ie: 'src/common/ie.js',
'jquery.min': 'node_modules/jquery/dist/jquery.min.js',
//quixe: 'src/common/quixe.js',
scare: 'node_modules/emglken/build/scare.*',
tads: 'node_modules/emglken/build/tads.*',
Expand All @@ -121,6 +120,16 @@ if (projects.includes('web')) {
},
outdir: 'dist/web',
sourcemap: true,
},
// To avoid breaking .min.js files, we'll copy jQuery by itself
{
entryPoints: {
'jquery.min': 'node_modules/jquery/dist/jquery.min.js',
},
loader: {
'.min.js': 'copy',
},
outdir: 'dist/web',
}, {
entryPoints: ['src/fonts/iosevka/*.woff2'],
outdir: 'dist/fonts/iosevka',
Expand All @@ -134,7 +143,6 @@ const common_options = {
loader: {
'.gif': 'copy',
'.html': 'copy',
'.min.js': 'copy',
'.wasm': 'copy',
'.woff2': 'copy',
},
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"@types/minimist": "^1.2.2",
"@typescript-eslint/eslint-plugin": "~6.7.0",
"@typescript-eslint/parser": "~6.7.0",
"esbuild": "^0.23.0",
"esbuild": "^0.24.0",
"esbuild-svelte": "^0.8.1",
"eslint": "^8.3.0",
"eslint-plugin-compat": "^4.0.0",
Expand Down
1 change: 0 additions & 1 deletion src/web/web.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

@import url('./parchment.css');
@import url('../upstream/asyncglk/src/glkote/web/glkote.css');
@import url('../upstream/asyncglk/src/dialog/browser/ui/dialog.css');
@import url('../fonts/fonts.css');
@import url('../upstream/asyncglk/src/glkote/web/light.css');
@import url('../upstream/asyncglk/src/glkote/web/dark.css');

0 comments on commit 5f65828

Please sign in to comment.