Skip to content
This repository has been archived by the owner on Nov 4, 2023. It is now read-only.

Commit

Permalink
fix: bad build configs
Browse files Browse the repository at this point in the history
  • Loading branch information
cdaringe committed Jan 24, 2021
1 parent 73181ca commit 477bf04
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 3 additions & 0 deletions docs/next.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports = {
basePath: '/factorio-type-kit'
}
3 changes: 1 addition & 2 deletions rad.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ const format: Task = `npx prettier --write .`;
const test: Task = `npx ava --coverage`;
const run: Task = `node -r ts-node/register/transpile-only src/bin.ts -l ts -o factorio.d.ts`;

const clean: Task =
'npx del "{src,test}/**/*.js" "./*.js" && rm -rf .factorio-ts-cache';
const clean: Task = 'npx del "{src,test}/**/*.js" && rm -rf .factorio-ts-cache';

const runAndFormat: Task = {
dependsOn: [clean],
Expand Down

0 comments on commit 477bf04

Please sign in to comment.