Merge pull request #4031 from matrix-org/t3chguy/missing_dep

Use minimist instead of optimist as it is deprecated
pull/21833/head
Michael Telatynski 2020-02-04 11:32:32 +00:00 committed by GitHub
commit fff35fd2c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -81,6 +81,7 @@
"linkifyjs": "^2.1.6",
"lodash": "^4.17.14",
"matrix-js-sdk": "github:matrix-org/matrix-js-sdk#develop",
"minimist": "^1.2.0",
"pako": "^1.0.5",
"png-chunks-extract": "^1.0.0",
"prop-types": "^15.5.8",

View File

@ -2,7 +2,7 @@
var fs = require('fs');
var path = require('path');
var glob = require('glob');
var args = require('optimist').argv;
var args = require('minimist')(process.argv);
var chokidar = require('chokidar');
var componentIndex = path.join('src', 'component-index.js');