Untnrack default config

This commit is contained in:
Marco van Dijk 2022-10-09 22:59:56 +02:00
parent 603aa7c5b2
commit a2987f5241
3 changed files with 5 additions and 5 deletions

3
.gitignore vendored
View File

@ -4,4 +4,5 @@ build/
notes.txt
output
converted
package-lock.json
package-lock.json
config/default.json

View File

@ -18,9 +18,8 @@ const { generateRocketeer } = require("./nft-media/rocketeer");
// Generate new Captain Chad's
while (todo) {
const id = Math.floor(Math.random() * (maxId) + minId)
console.log("Generating Cpn Chad " + id);
console.log("Generating Cpn Chad #" + id + " (" + todo-- + " left)");
console.log(await generateRocketeer(id, basePath));
todo--;
}
process.exit(0);
} catch (err) {

View File

@ -5,8 +5,8 @@
"main": "index.js",
"module": "index.js",
"scripts": {
"start": "NODE_ENV=production node ./index.js",
"dev": "NODE_ENV=development nodemon ./index.js"
"start": "node ./index.js",
"dev": "nodemon ./index.js"
},
"keywords": [],
"author": "",