Merge pull request #5 from vector-im/dbkr/mkdirp

Use portable mkdirp
This commit is contained in:
David Baker 2019-12-10 14:44:15 +00:00 committed by GitHub
commit 2e9146ab78
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,7 +12,7 @@
"license": "Apache-2.0", "license": "Apache-2.0",
"files": [], "files": [],
"scripts": { "scripts": {
"mkdirs": "mkdir -p packages && mkdir -p deploys", "mkdirs": "mkdirp packages deploys",
"fetch": "yarn run mkdirs && node scripts/fetch-package.js", "fetch": "yarn run mkdirs && node scripts/fetch-package.js",
"check": "node scripts/check-webapp.js", "check": "node scripts/check-webapp.js",
"start": "yarn run check && yarn install:electron && electron .", "start": "yarn run check && yarn install:electron && electron .",
@ -38,6 +38,7 @@
"eslint-plugin-babel": "^4.1.2", "eslint-plugin-babel": "^4.1.2",
"follow-redirects": "^1.9.0", "follow-redirects": "^1.9.0",
"matrix-js-sdk": "^2.4.6-rc.1", "matrix-js-sdk": "^2.4.6-rc.1",
"mkdirp": "^0.5.1",
"rimraf": "^3.0.0", "rimraf": "^3.0.0",
"tar": "^5.0.5" "tar": "^5.0.5"
}, },