Skip to content

Commit

Permalink
Merge pull request #61 from mtklass/migrate-vue2-to-vue3
Browse files Browse the repository at this point in the history
Migrate to Typescript and Vue 3
  • Loading branch information
connorhsm authored Sep 9, 2024
2 parents a63c0e2 + b33582d commit 28bb29f
Show file tree
Hide file tree
Showing 70 changed files with 4,257 additions and 2,851 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,16 +56,16 @@ npm install
cd ..

# run script including downloading latest data and processing sprites
node process download
npm run process -- download

# if you want to re-process the sprites without downloading data
node process sprites
npm run process -- sprites

# if you want to re-process the sounds without downloading data
node process sounds
npm run process -- sounds

# or process without generating sprites
node process
npm run process
```

### Processing Script (Docker version)
Expand All @@ -83,16 +83,16 @@ This will build the Docker image used for the build environment, and then set up

You can then run different build commands within a container of this image:
```
./docker-run.sh node process-docker
./docker-run.sh npm run process
```
```
./docker-run.sh node process-docker download
./docker-run.sh npm run process -- download
```
```
./docker-run.sh node process-docker sprites
./docker-run.sh npm run process -- sprites
```
```
./docker-run.sh node process-docker sounds
./docker-run.sh npm run process -- sounds
```

### Modded Support
Expand Down
2 changes: 1 addition & 1 deletion SERVER.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ Then run it:

```
cd onetech
node process download
npm run process -- download
```

## Cron
Expand Down
Loading

0 comments on commit 28bb29f

Please sign in to comment.