Skip to content

Commit

Permalink
Merge pull request #26 from Lenni009/dev
Browse files Browse the repository at this point in the history
add filtering for foreign bases
  • Loading branch information
Lenni009 authored Nov 11, 2023
2 parents f6769b1 + 273bd93 commit 20ee1cb
Show file tree
Hide file tree
Showing 6 changed files with 654 additions and 114 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Minify
name: Build

run-name: Minify Code
run-name: Build Code

on:
push:
Expand All @@ -10,20 +10,20 @@ permissions:
contents: write

concurrency:
group: "minify"
group: "build"
cancel-in-progress: true

jobs:
build:
environment: github-pages
runs-on: ubuntu-latest

steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
uses: actions/checkout@v4

- run: |
npm i
- name: Build
run: |
npm ci
npm run build
cd dist
touch .nojekyll
Expand Down
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# BaseReorder

This web app allows you to reorder the bases in the teleporter UI in No Man's
Sky by simply drag'n'dropping them where you want them to be.

## Code

This app is built with TypeScript and Vite. To run it locally, clone the repo, then run:
```bat
npm i
```

To start the dev server, run
```bat
npm run dev
```
Loading

0 comments on commit 20ee1cb

Please sign in to comment.