Skip to content

Commit

Permalink
Reorganize scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
tfedor committed Mar 14, 2024
1 parent a9ab2fe commit b47702f
Show file tree
Hide file tree
Showing 8 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "augmented-steam",
"scripts": {
"build": "node config/scripts/build.mjs",
"update-locales": "node config/scripts/locales.mjs",
"release": "node config/scripts/make-release.mjs",
"build": "node scripts/build.mjs",
"update-locales": "node scripts/locales.mjs",
"release": "node scripts/make-release.mjs",
"lint": "eslint .",
"check": "eslint . & npx tsc --noEmit & svelte-check"
},
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import path from "path";
import sveltePreprocess from "svelte-preprocess";
import fs from "node:fs/promises";
import YAML from "yaml";
import ManifestBuilder from "../manifest/ManifestBuilder.mjs";
import ManifestBuilder from "./manifestBuilder.mjs";
import manifestPreprocess from "./manifestPreprocess.mjs";

const __dirname = import.meta.dirname;
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit b47702f

Please sign in to comment.