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

1
.gitignore vendored
View File

@ -5,3 +5,4 @@ notes.txt
output output
converted 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 // Generate new Captain Chad's
while (todo) { while (todo) {
const id = Math.floor(Math.random() * (maxId) + minId) 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)); console.log(await generateRocketeer(id, basePath));
todo--;
} }
process.exit(0); process.exit(0);
} catch (err) { } catch (err) {

View File

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