Fix error in workflow

This commit is contained in:
mtkennerly 2022-07-02 15:39:01 +08:00
parent 78cd9df811
commit e5248a8464
No known key found for this signature in database
GPG key ID: E764BE00BE6E6408
2 changed files with 2 additions and 1 deletions

View file

@ -1,7 +1,7 @@
import { DELAY_BETWEEN_GAMES_MS, REPO, PathType, UnsupportedOsError, UnsupportedPathError, YamlFile } from ".";
import { Constraint, Game, Store, Tag, Os } from "./manifest";
import moment from "moment";
import * as NodeMw from "nodemw";
import NodeMw from "nodemw";
import * as Wikiapi from "wikiapi";
import { parse as parseWiki } from 'wikiparse';

View file

@ -2,6 +2,7 @@
"compilerOptions": {
"module": "commonjs",
"target": "es5",
"outDir": "out",
"lib": [
"es2019"
],