-p added to mkdir to not fail if already exists

This commit is contained in:
Ava Gaiety W 2023-03-22 08:53:24 -05:00
parent 7ab4147764
commit ab124a643d

View file

@ -4,7 +4,7 @@
"description": "Rawr, if you must refer to me this is how you may", "description": "Rawr, if you must refer to me this is how you may",
"main": "app.js", "main": "app.js",
"scripts": { "scripts": {
"postinstall": "mkdir ./dist", "postinstall": "mkdir -p ./dist",
"start": "concurrently npm:serve:*", "start": "concurrently npm:serve:*",
"build": "concurrently npm:build:*", "build": "concurrently npm:build:*",
"serve:handlebars": "node app.js", "serve:handlebars": "node app.js",