From dca1858c570dca93b80c478271f7344c7ac219a4 Mon Sep 17 00:00:00 2001 From: nikoladev Date: Tue, 27 Aug 2019 10:59:10 +0200 Subject: [PATCH] fix typo in error message --- commands/package.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/package.js b/commands/package.js index 34b3079..58895dc 100644 --- a/commands/package.js +++ b/commands/package.js @@ -52,7 +52,7 @@ function package(opts, args) { const errors = validate(metadata, {root: sourcePath}); if (errors.length > 0) { return Object.assign({}, result, { - "error": "Can't package a plugin that has validation errors in the maniest.json:\n" + errors.join("\n") + "error": "Can't package a plugin that has validation errors in the manifest.json:\n" + errors.join("\n") }); } @@ -103,4 +103,4 @@ function package(opts, args) { return results; } -module.exports = package; \ No newline at end of file +module.exports = package;