From 7e7f431c667eb3bd54b50a01d446e87ac8152c14 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Wed, 1 Jul 2020 06:05:42 -0700
Subject: [PATCH] Bump electron-devtools-installer from 3.0.0 to 3.1.0 in
/desktop (#1317)
Summary:
Bumps [electron-devtools-installer](https://github.com/MarshallOfSound/electron-devtools-installer) from 3.0.0 to 3.1.0.
Release notes
Sourced from electron-devtools-installer's releases.
v3.1.0
3.1.0 (2020-06-27)
Features
Commits
[](https://help.github.com/articles/configuring-automated-security-fixes)
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
- `dependabot rebase` will rebase this PR
- `dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `dependabot merge` will merge this PR after your CI passes on it
- `dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `dependabot cancel merge` will cancel a previously requested merge and block automerging
- `dependabot reopen` will reopen this PR if it is closed
- `dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Pull Request resolved: https://github.com/facebook/flipper/pull/1317
Reviewed By: mweststrate
Differential Revision: D22310350
Pulled By: passy
fbshipit-source-id: d043248ebd57976c5cfde267741977846c77c065
---
desktop/static/package.json | 2 +-
desktop/yarn.lock | 8 ++++----
packer/src/main.rs | 8 ++++++++
3 files changed, 13 insertions(+), 5 deletions(-)
diff --git a/desktop/static/package.json b/desktop/static/package.json
index 407215aac..3aa33327a 100644
--- a/desktop/static/package.json
+++ b/desktop/static/package.json
@@ -5,7 +5,7 @@
"private": true,
"license": "MIT",
"dependencies": {
- "electron-devtools-installer": "^3.0.0",
+ "electron-devtools-installer": "^3.1.0",
"expand-tilde": "^2.0.2",
"fb-watchman": "^2.0.0",
"fix-path": "^3.0.0",
diff --git a/desktop/yarn.lock b/desktop/yarn.lock
index d7a3c3f62..e3d458537 100644
--- a/desktop/yarn.lock
+++ b/desktop/yarn.lock
@@ -4715,10 +4715,10 @@ electron-chromedriver@^9.0.0:
"@electron/get" "^1.12.2"
extract-zip "^2.0.0"
-electron-devtools-installer@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/electron-devtools-installer/-/electron-devtools-installer-3.0.0.tgz#b5c439708746ed36f7b0220e18657567bca275d8"
- integrity sha512-zll3w/8PvnPiGmL5tBtgSSoSjWnUljsOjJYsYYU12PKLljzWyfD6S75LKTZFn21VYxVbae2OwmjM5uFStLp6nQ==
+electron-devtools-installer@^3.1.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/electron-devtools-installer/-/electron-devtools-installer-3.1.0.tgz#c7800d36ab8438b51d2e03345860f817ecb5797f"
+ integrity sha512-qZd1Aoya8YOK6QauNX92V5qyKGtb4lbs238bP+qtMBkXts24xJ/1PtOVBPvdg5w3Ts9L5o6I9sDErKuzHeJFDA==
dependencies:
rimraf "^3.0.2"
semver "^7.2.1"
diff --git a/packer/src/main.rs b/packer/src/main.rs
index f9b565039..887491d2a 100644
--- a/packer/src/main.rs
+++ b/packer/src/main.rs
@@ -5,6 +5,14 @@
* LICENSE file in the root directory of this source tree.
*/
+#![warn(
+ clippy::all,
+ clippy::restriction,
+ clippy::pedantic,
+ clippy::nursery,
+ clippy::cargo
+)]
+
mod error;
mod types;