Skip to content

Commit

Permalink
Upgrade imlib.
Browse files Browse the repository at this point in the history
  • Loading branch information
thesoftwarephilosopher committed Aug 2, 2024
1 parent 102d99e commit 077dd94
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
"typescript": "^4.5.2"
},
"dependencies": {
"@imlib/core": "^2.2.0"
"@imlib/core": "^2.2.2"
}
}
2 changes: 1 addition & 1 deletion site/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SamAnimate!</title>
<link rel="stylesheet" href="style.css">
<script src="./$setup.js" type="module"></script>
<script src="./setup.js" type="module"></script>
</head>

</html>
File renamed without changes.
2 changes: 1 addition & 1 deletion site/$picture.ts → site/picture.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Line, SerializedLine } from "./$line.js";
import { Line, SerializedLine } from "./line.js";

type Action = {
type: 'AddLine' | 'RemoveLine';
Expand Down
4 changes: 2 additions & 2 deletions site/$reel.ts → site/reel.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Line } from "./$line.js";
import { Picture, SerializedPicture } from "./$picture.js";
import { Line } from "./line.js";
import { Picture, SerializedPicture } from "./picture.js";

export class Reel {

Expand Down
2 changes: 1 addition & 1 deletion site/$setup.tsx → site/setup.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Reel } from "./$reel.js";
import { Reel } from "./reel.js";

const canvas = <canvas id="canvas" width="1200" height="700"></canvas> as HTMLCanvasElement;

Expand Down

0 comments on commit 077dd94

Please sign in to comment.