Skip to content

Commit

Permalink
Merge pull request #45 from thepeanutgalleryandco/v-1-7-1
Browse files Browse the repository at this point in the history
Windows 502 HTTP Response Fix
  • Loading branch information
thepeanutgalleryandco committed Mar 31, 2022
2 parents 3b651d3 + 8b86474 commit 8623213
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-and-mint-nft-collection",
"version": "1.7.0",
"version": "1.7.1",
"description": "Source code to create and mint generative art via NFTPort API. Special thanks to codeSTACKr and Hashlips for their source codebase.",
"main": "index.js",
"bin": "index.js",
Expand Down Expand Up @@ -51,6 +51,7 @@
"canvas": "^2.9.0",
"form-data": "^4.0.0",
"gif-encoder-2": "^1.0.5",
"graceful-fs": "^4.2.9",
"node-fetch": "^2.6.7",
"puppeteer": "^13.5.0",
"sha1": "^1.1.1",
Expand Down
2 changes: 1 addition & 1 deletion utils/nftport/uploadMetas_directory.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Load modules and constants
const { RateLimit } = require('async-sema');
const fs = require("fs");
const fs = require("graceful-fs");
const FormData = require("form-data");
const BASEDIR = process.cwd();
const { FOLDERS } = require(`${BASEDIR}/constants/folders.js`);
Expand Down

0 comments on commit 8623213

Please sign in to comment.