Skip to content

Commit

Permalink
batman
Browse files Browse the repository at this point in the history
  • Loading branch information
eonarheim committed Jan 24, 2025
1 parent 4e06cca commit 6dcdf3a
Show file tree
Hide file tree
Showing 25 changed files with 4,156 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
node_modules
.DS_Store
dist
dist-ssr
app
out
cache
*.local
test/images/actual.png
test/images/diff-*.png
/test-results/
/playwright-report/
/blob-report/
/playwright/.cache/
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
22.13.1
26 changes: 26 additions & 0 deletions build-nw.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
import nwbuild from 'nw-builder';

// read more about nwbuilder here
// https://github.com/nwutils/nw-builder


nwbuild({
mode: "build",
flavor: "normal",
version: "stable",
srcDir: "./dist/**/**",
outDir: "./app",
platform: "win",
managedManifest: true,
app: {
name: "Excalibur + NWJS",
internalName: "Excalibur + NWJS",
originalFilename: "Excalibur + NWJS",
legalCopyright: "Copyright (c) 2025 Your Company Here",
version: '0.0.0',
productVersion: '0.0.0',


}
});

16 changes: 16 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8" />
<link rel="icon" href="favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./src/style.css">
<title>Excalibur + NWJS</title>
</head>

<body>
<script type="module" src="./src/main.ts"></script>
</body>

</html>
Loading

0 comments on commit 6dcdf3a

Please sign in to comment.