Skip to content
This repository has been archived by the owner on Oct 21, 2020. It is now read-only.

Commit

Permalink
chore(deps): update eslint and prettier (minor) (#441)
Browse files Browse the repository at this point in the history
* chore(deps): update eslint and prettier

* chore: fix lint error
  • Loading branch information
renovate[bot] authored and toshi-toma committed Dec 10, 2019
1 parent b44d75a commit e0eb7af
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 16 deletions.
16 changes: 8 additions & 8 deletions docs/dist/bundle.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"@cybozu/eslint-config": "^8.1.0",
"array-flatten": "^3.0.0",
"cssnano-cli": "^1.0.5",
"eslint": "^6.6.0",
"eslint": "^6.7.2",
"execa": "^3.4.0",
"glob": "^7.1.6",
"husky": "^3.0.9",
Expand All @@ -54,7 +54,7 @@
"normalize.css": "^8.0.1",
"npm-run-all": "^4.1.5",
"power-assert": "^1.6.1",
"prettier": "1.18.2",
"prettier": "1.19.1",
"redux": "^4.0.4",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
Expand Down
7 changes: 4 additions & 3 deletions src/zip.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,10 @@ function rezip(contentsZip) {
* @return {!Promise<*>}
*/
function validateContentsZip(contentsZip) {
return preprocessToRezip(contentsZip).then(
({ entries, manifestJson, manifestPath }) =>
validateManifest(entries, manifestJson, manifestPath)
return preprocessToRezip(
contentsZip
).then(({ entries, manifestJson, manifestPath }) =>
validateManifest(entries, manifestJson, manifestPath)
);
}

Expand Down

0 comments on commit e0eb7af

Please sign in to comment.