This commit is contained in:
platane
2023-09-23 19:57:32 +02:00
committed by Platane
parent 8eddcbdbea
commit 743771147d
12 changed files with 705 additions and 527 deletions

View File

@@ -2,7 +2,7 @@
"name": "@snk/action",
"version": "1.0.0",
"dependencies": {
"@actions/core": "1.10.0",
"@actions/core": "1.10.1",
"@snk/gif-creator": "1.0.0",
"@snk/github-user-contribution": "1.0.0",
"@snk/solver": "1.0.0",
@@ -10,7 +10,7 @@
"@snk/types": "1.0.0"
},
"devDependencies": {
"@vercel/ncc": "0.36.1",
"@vercel/ncc": "0.38.0",
"dotenv": "16.3.1"
},
"scripts": {

View File

@@ -15,7 +15,7 @@
"html-webpack-plugin": "5.5.3",
"ts-loader": "9.4.4",
"ts-node": "10.9.1",
"webpack": "5.88.1",
"webpack": "5.88.2",
"webpack-cli": "5.1.4",
"webpack-dev-server": "4.15.1"
},

View File

@@ -66,7 +66,7 @@ export const drawWorld = (
};
export const drawLerpWorld = (
ctx: CanvasRenderingContext2D,
ctx: CanvasRenderingContext2D | CanvasRenderingContext2D,
grid: Grid,
cells: Point[] | null,
snake0: Snake,

View File

@@ -43,7 +43,7 @@ export const createGif = async (
const { width, height } = getCanvasWorldSize(grid0, drawOptions);
const canvas = createCanvas(width, height);
const ctx = canvas.getContext("2d")!;
const ctx = canvas.getContext("2d") as any as CanvasRenderingContext2D;
const grid = copyGrid(grid0);
const stack: Color[] = [];

View File

@@ -4,15 +4,15 @@
"dependencies": {
"@snk/draw": "1.0.0",
"@snk/solver": "1.0.0",
"canvas": "2.10.2",
"canvas": "2.11.2",
"gif-encoder-2": "1.0.5",
"gifsicle": "5.3.0",
"tmp": "0.2.1"
},
"devDependencies": {
"@types/gifsicle": "5.2.0",
"@types/tmp": "0.2.3",
"@vercel/ncc": "0.36.1"
"@types/tmp": "0.2.4",
"@vercel/ncc": "0.38.0"
},
"scripts": {
"benchmark": "ncc run __tests__/benchmark.ts --quiet"

View File

@@ -3,6 +3,6 @@
"version": "1.0.0",
"dependencies": {
"@snk/github-user-contribution": "1.0.0",
"@vercel/node": "2.15.5"
"@vercel/node": "3.0.6"
}
}

View File

@@ -2,10 +2,10 @@
"name": "@snk/github-user-contribution",
"version": "1.0.0",
"dependencies": {
"node-fetch": "2.6.12"
"node-fetch": "2.7.0"
},
"devDependencies": {
"@types/node-fetch": "2.6.4",
"@types/node-fetch": "2.6.5",
"dotenv": "16.3.1"
}
}