Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
filips123 committed Jul 7, 2021
1 parent dae9f82 commit 38e798f
Show file tree
Hide file tree
Showing 14 changed files with 907 additions and 1,065 deletions.
11 changes: 5 additions & 6 deletions extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,17 +39,16 @@
"semver": "^7.3.5"
},
"devDependencies": {
"@parcel/config-default": "2.0.0-beta.3.1",
"@parcel/config-webextension": "2.0.0-beta.3.1",
"@parcel/transformer-sass": "2.0.0-beta.3.1",
"eslint": "^7.13.0",
"@parcel/config-webextension": "2.0.0-nightly.2377",
"@parcel/transformer-sass": "2.0.0-nightly.755",
"eslint": "^7.30.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"npm-run-all": "^4.1.5",
"parcel": "2.0.0-beta.3.1",
"parcel": "2.0.0-nightly.753",
"rimraf": "^3.0.2",
"web-ext": "^6.2.0"
}
Expand Down
2 changes: 1 addition & 1 deletion extension/src/setup/install.html
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,6 @@ <h1 class="text-center">Setup FirefoxPWA</h1>
</div>
</div>

<script src="install.js"></script>
<script type="module" src="install.js"></script>
</body>
</html>
2 changes: 1 addition & 1 deletion extension/src/setup/instructions.html
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,6 @@
</div>
</div>

<script src="instructions.js"></script>
<script type="module" src="instructions.js"></script>
</body>
</html>
2 changes: 1 addition & 1 deletion extension/src/setup/update.html
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,6 @@ <h1 class="text-center pb-2">Update FirefoxPWA</h1>
</div>
</div>

<script src="update.js"></script>
<script type="module" src="update.js"></script>
</body>
</html>
2 changes: 1 addition & 1 deletion extension/src/sites/install.html
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,6 @@ <h5 class="modal-title" id="new-profile-label">Create a new profile</h5>
</div>
</div>

<script src="install.js"></script>
<script type="module" src="install.js"></script>
</body>
</html>
2 changes: 1 addition & 1 deletion extension/src/sites/launch.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@
<div class="toast-body" id="error-text"></div>
</div>

<script src="launch.js"></script>
<script type="module" src="launch.js"></script>
</body>
</html>
2 changes: 1 addition & 1 deletion extension/src/sites/manage.html
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,6 @@ <h5 class="modal-title" id="profile-remove-label">Remove profile</h5>
<div class="toast-body" id="error-text"></div>
</div>

<script src="manage.js"></script>
<script type="module" src="manage.js"></script>
</body>
</html>
1,768 changes: 810 additions & 958 deletions extension/yarn.lock

Large diffs are not rendered by default.

46 changes: 23 additions & 23 deletions native/Cargo.lock

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

10 changes: 5 additions & 5 deletions native/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ serde = { version = "1.0.126", features = ["derive"] }
serde_json = "1.0.64"
simplelog = "0.10.0"
smart-default = "0.6.0"
structopt = "0.3.21"
structopt = "0.3.22"
tempfile = "3.2.0"
ulid = { version = "0.4.1", features = ["serde"] }
url = "2.2.2"
Expand All @@ -48,17 +48,17 @@ web_app_manifest = { git = "https://github.com/filips123/WebAppManifestRS", bran
bindings = { path = "bindings" }
runas = "0.2.1"
sanitize-filename = "0.3.0"
windows = "0.11.0"
winreg = "0.8.0"
windows = "0.14.0"
winreg = "0.9.0"

[target.'cfg(target_os = "linux")'.dependencies]
bzip2 = "0.4.3"
phf = { version = "0.9", features = ["macros"] }
phf = { version = "0.9.0", features = ["macros"] }
tar = "0.4.35"

[build-dependencies]
clap = "2.33.3"
structopt = "0.3.21"
structopt = "0.3.22"
ulid = "0.4.1"
url = "2.2.2"

Expand Down
14 changes: 8 additions & 6 deletions native/bindings/Cargo.lock

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

4 changes: 2 additions & 2 deletions native/bindings/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2018"
publish = false

[dependencies]
windows = "0.11.0"
windows = "0.14.0"

[build-dependencies]
windows = "0.11.0"
windows = "0.14.0"
5 changes: 1 addition & 4 deletions native/bindings/build.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
fn main() {
windows::build! {
Windows::Win32::Foundation::{
BOOL,
PWSTR,
},
Windows::Win32::Foundation::PWSTR,
Windows::Win32::System::Com::IPersistFile,
Windows::Win32::System::PropertiesSystem::{
PROPERTYKEY,
Expand Down
Loading

0 comments on commit 38e798f

Please sign in to comment.