chore: bump deps

This commit is contained in:
liyasthomas 2021-06-20 18:06:20 +05:30
parent bd3cec18d8
commit 96c23200f7
7 changed files with 356 additions and 270 deletions

View file

@ -475,13 +475,6 @@ _Sample keys only works with the [production build](https://hoppscotch.io)._
**Official container**   [![hoppscotch/hoppscotch](https://img.shields.io/docker/pulls/hoppscotch/hoppscotch?style=social)](https://hub.docker.com/r/hoppscotch/hoppscotch) **Official container**   [![hoppscotch/hoppscotch](https://img.shields.io/docker/pulls/hoppscotch/hoppscotch?style=social)](https://hub.docker.com/r/hoppscotch/hoppscotch)
```bash ```bash
#pull
docker pull hoppscotch/hoppscotch
#build
docker build -t hoppscotch/hoppscotch:latest .
#run
docker run --rm --name hoppscotch -p 3000:3000 hoppscotch/hoppscotch:latest docker run --rm --name hoppscotch -p 3000:3000 hoppscotch/hoppscotch:latest
``` ```
@ -493,13 +486,6 @@ docker run --rm --name hoppscotch -p 3000:3000 hoppscotch/hoppscotch:latest
--- ---
```bash ```bash
#pull
docker pull liyasthomas/postwoman
#build
docker build -t liyasthomas/postwoman:latest .
#run
docker run -p 3000:3000 liyasthomas/postwoman:latest docker run -p 3000:3000 liyasthomas/postwoman:latest
``` ```

View file

@ -206,34 +206,34 @@ export default {
}) })
} }
const showAd = localStorage.getItem("showAd") === "no" // const showAd = localStorage.getItem("showAd") === "no"
if (!showAd) { // if (!showAd) {
setTimeout(() => { // setTimeout(() => {
this.$toast.clear() // this.$toast.clear()
this.$toast.show( // this.$toast.show(
"<span><a href='https://fundoss.org/collective/hoppscotch' target='_blank' rel='noopener'>Sponsor us to support Hoppscotch open source project 💖</a><br><sub>Whoosh this away to dismiss.</sub></span>", // "<span><a href='https://fundoss.org/collective/hoppscotch' target='_blank' rel='noopener'>Sponsor us to support Hoppscotch open source project 💖</a><br><sub>Whoosh this away to dismiss.</sub></span>",
{ // {
icon: "", // icon: "",
duration: 0, // duration: 0,
theme: "toasted-ad", // theme: "toasted-ad",
action: [ // action: [
{ // {
text: "Donate", // text: "Donate",
icon: "chevron_right", // icon: "chevron_right",
onClick: (_, toastObject) => { // onClick: (_, toastObject) => {
localStorage.setItem("showAd", "no") // localStorage.setItem("showAd", "no")
toastObject.goAway(0) // toastObject.goAway(0)
window.open("https://fundoss.org/collective/hoppscotch") // window.open("https://fundoss.org/collective/hoppscotch")
}, // },
}, // },
], // ],
onComplete() { // onComplete() {
localStorage.setItem("showAd", "no") // localStorage.setItem("showAd", "no")
}, // },
} // }
) // )
}, 6000) // }, 6000)
} // }
// let showExtensionsToast = localStorage.getItem("showExtensionsToast") === "yes" // let showExtensionsToast = localStorage.getItem("showExtensionsToast") === "yes"
// if (!showExtensionsToast) { // if (!showExtensionsToast) {

View file

@ -19,3 +19,9 @@
to = "https://forms.gle/XPYDMp8m6JHNWcYp9" to = "https://forms.gle/XPYDMp8m6JHNWcYp9"
status = 301 status = 301
force = true force = true
[[redirects]]
from = "/careers"
to = "https://www.notion.so/hoppscotch/3b9d5d5239a043bfb91701faabf5b8f0"
status = 301
force = true

536
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -33,14 +33,14 @@
"acorn": "^8.4.0", "acorn": "^8.4.0",
"acorn-walk": "^8.1.0", "acorn-walk": "^8.1.0",
"esprima": "^4.0.1", "esprima": "^4.0.1",
"firebase": "^8.6.7", "firebase": "^8.6.8",
"graphql": "^15.5.0", "graphql": "^15.5.0",
"graphql-language-service-interface": "^2.8.4", "graphql-language-service-interface": "^2.8.4",
"lodash": "^4.17.21", "lodash": "^4.17.21",
"mustache": "^4.2.0", "mustache": "^4.2.0",
"node-interval-tree": "^1.3.3", "node-interval-tree": "^1.3.3",
"nuxt": "^2.15.7", "nuxt": "^2.15.7",
"nuxt-i18n": "^6.27.0", "nuxt-i18n": "^6.27.1",
"paho-mqtt": "^1.1.0", "paho-mqtt": "^1.1.0",
"rxjs": "^7.1.0", "rxjs": "^7.1.0",
"socket.io-client": "^4.1.2", "socket.io-client": "^4.1.2",
@ -55,7 +55,7 @@
"yargs-parser": "^20.2.7" "yargs-parser": "^20.2.7"
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "^7.14.5", "@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.5", "@babel/preset-env": "^7.14.5",
"@nuxt/types": "^2.15.7", "@nuxt/types": "^2.15.7",
"@nuxt/typescript-build": "^2.1.0", "@nuxt/typescript-build": "^2.1.0",
@ -73,7 +73,7 @@
"@vue/test-utils": "^1.2.1", "@vue/test-utils": "^1.2.1",
"babel-core": "^7.0.0-bridge.0", "babel-core": "^7.0.0-bridge.0",
"babel-jest": "^27.0.2", "babel-jest": "^27.0.2",
"eslint": "^7.28.0", "eslint": "^7.29.0",
"eslint-config-prettier": "^8.1.0", "eslint-config-prettier": "^8.1.0",
"eslint-plugin-nuxt": ">=2.0.0", "eslint-plugin-nuxt": ">=2.0.0",
"eslint-plugin-prettier": "^3.3.1", "eslint-plugin-prettier": "^3.3.1",
@ -82,11 +82,11 @@
"jest": "^27.0.4", "jest": "^27.0.4",
"jest-serializer-vue": "^2.0.2", "jest-serializer-vue": "^2.0.2",
"lint-staged": "^11.0.0", "lint-staged": "^11.0.0",
"postcss": "^8.3.4", "postcss": "^8.3.5",
"prettier": "^2.3.1", "prettier": "^2.3.1",
"pretty-quick": "^3.1.0", "pretty-quick": "^3.1.1",
"raw-loader": "^4.0.2", "raw-loader": "^4.0.2",
"sass": "^1.34.1", "sass": "^1.35.1",
"sass-loader": "^10.2.0", "sass-loader": "^10.2.0",
"stylelint": "^13.12.0", "stylelint": "^13.12.0",
"stylelint-config-prettier": "^8.0.2", "stylelint-config-prettier": "^8.0.2",

Binary file not shown.

Before

Width:  |  Height:  |  Size: 96 KiB

After

Width:  |  Height:  |  Size: 237 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 90 KiB

After

Width:  |  Height:  |  Size: 223 KiB