Skip to content

Commit

Permalink
chore: Replace git protocol in dep with https
Browse files Browse the repository at this point in the history
Replace `git://` protocol in favor of `https://` protocol in
"package.json" when fetching the dependency `google-assistant`. This
addresses the breaking changes introduced in GitHub actions pipeline
  • Loading branch information
Melvin-Abraham committed Mar 25, 2022
1 parent bb48bab commit e5499d5
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 32 deletions.
60 changes: 30 additions & 30 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 @@ -121,15 +121,15 @@
"dist:ci": "electron-builder --publish never",
"pack": "electron-builder --dir",
"lint": "eslint .",
"preinstall": "npm install git://github.com/Melvin-Abraham/google-assistant.git#g-assist",
"preinstall": "npm install https://github.com/Melvin-Abraham/google-assistant.git#g-assist",
"postinstall": "electron-builder install-app-deps"
},
"dependencies": {
"bumblebee-hotword": "0.2.1",
"electron-is-accelerator": "^0.2.0",
"electron-log": "^4.3.5",
"electron-updater": "^4.3.9",
"google-assistant": "git://github.com/Melvin-Abraham/google-assistant.git#g-assist",
"google-assistant": "git+https://github.com/Melvin-Abraham/google-assistant.git#g-assist",
"grpc": "1.24.6",
"isomorphic-dompurify": "^0.15.0",
"marked": "^3.0.2",
Expand Down

0 comments on commit e5499d5

Please sign in to comment.