initial commit

This commit is contained in:
Niels Kooiman
2019-08-12 12:52:12 +02:00
parent cc94057ac7
commit 352211dfcf
29 changed files with 2303 additions and 11 deletions

2
pkg-update.js Normal file
View File

@@ -0,0 +1,2 @@
const json = JSON.parse(require('fs').readFileSync("package.json"));
require('child_process').spawn('npm', ['i', '-D', ...Object.keys(json.devDependencies)], {stdio: 'inherit', detached: true});