aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2021-04-29 19:01:09 +0200
committerlonkaars <loek@pipeframe.xyz>2021-04-29 19:01:09 +0200
commit9eba5d3e5da90987bb38ee33b505e0c26ea310d9 (patch)
tree0776ecae8d04b450fa5b5be092dd50cbda07ee0b
parent793fbd746ec640d884ff1fd859231404c31a05fd (diff)
more endpoints
-rw-r--r--.gitignore1
-rw-r--r--index.ts10
-rw-r--r--makefile6
3 files changed, 13 insertions, 4 deletions
diff --git a/.gitignore b/.gitignore
index c5505f4..d1316d8 100644
--- a/.gitignore
+++ b/.gitignore
@@ -41,3 +41,4 @@ jspm_packages
**/*.js
downloads.html
+out/
diff --git a/index.ts b/index.ts
index 44c7b66..17aa551 100644
--- a/index.ts
+++ b/index.ts
@@ -1,5 +1,9 @@
import puppeteer from 'puppeteer';
import cheerio from 'cheerio';
+import { writeFile } from 'fs';
+import { promisify } from 'util';
+
+var writeFileAsync = promisify(writeFile);
import * as types from './types';
@@ -53,6 +57,10 @@ downloads.each(async (i, el) => {
latestPre = version;
}
+ for(var mcVersion in minecraftVersions) {
+ await writeFileAsync("./out/" + mcVersion, JSON.stringify(minecraftVersions[mcVersion]));
+ }
+
var response: types.APIResponse = {
lastUpdate: Date.now(),
all: versions,
@@ -61,7 +69,7 @@ downloads.each(async (i, el) => {
latestPre
}
- console.log(JSON.stringify(response));
+ await writeFileAsync("./out/all", JSON.stringify(response));
process.exit(0);
}
});
diff --git a/makefile b/makefile
index bfa68fb..ccfe6bd 100644
--- a/makefile
+++ b/makefile
@@ -1,4 +1,4 @@
-all: source
+all:
+ mkdir out
+ node .
-source:
- node . > downloads.html