Compare commits

...

2 Commits

Author SHA1 Message Date
fe00d3e81d fix import syntax
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
2024-07-08 19:13:48 -04:00
ab3f639d0e Update node Docker tag to v22
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
2024-04-26 18:01:07 +00:00
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
FROM node:21 AS builder
FROM node:22 AS builder
COPY . /src
WORKDIR /src

View File

@ -1,7 +1,7 @@
import { load } from "cheerio";
import { readFile, writeFile } from "fs";
import process from "child_process";
import stores from "./stores.json" assert { type: "json" };
import stores from "./stores.json" with { type: "json" };
function GetRecentChanges() {
const res = process