Socket
Socket
Sign inDemoInstall

vue-disqus

Package Overview
Dependencies
21
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 4.0.1 to 5.1.0-alpha.0

demo/index.html

21

CHANGELOG.md

@@ -5,2 +5,23 @@ # Changelog

## [5.1.0-alpha.0](https://github.com/ktquez/vue-disqus/compare/v3.0.5...v5.1.0-alpha.0) (2021-04-10)
### Features
* Add documentation by Vuepress Vue a11y theme ([9513899](https://github.com/ktquez/vue-disqus/commit/95138994946f8e6b319d561b416c718c75f4f0ad))
* Add lazy load ([ac70f97](https://github.com/ktquez/vue-disqus/commit/ac70f97768fc20ea9dd5d3be8832275369a15353))
* Add reset embed in $disqus ([bfd89f6](https://github.com/ktquez/vue-disqus/commit/bfd89f65d6779e29940d938722713acfa50ba92f))
* Add types ([7d44da8](https://github.com/ktquez/vue-disqus/commit/7d44da87c9d98d758226099b0eb7c6b1ff865b2e))
* Added Disqus and DisqusCount components ([d50e0c5](https://github.com/ktquez/vue-disqus/commit/d50e0c54d5ad4c633c68924c4e9d0df1cee8d4af))
* Emit callback events ([f511016](https://github.com/ktquez/vue-disqus/commit/f5110169fbb00d25d8c00944670fd8ed561e5c5e))
* Set shortname globally ([54cc1e2](https://github.com/ktquez/vue-disqus/commit/54cc1e2c1baca5a587b058b0839a8f79e91925f7))
* Support to page and sso props with validator and reset when update language ([0b5e48b](https://github.com/ktquez/vue-disqus/commit/0b5e48ba3766c295cce4a0af5f73e8497851f028))
### Bug Fixes
* getShortname computed ([0eb76e4](https://github.com/ktquez/vue-disqus/commit/0eb76e45ed9b60cf36b3979b94a5500a6fed049e))
* reset component when change route ([e261c94](https://github.com/ktquez/vue-disqus/commit/e261c947018e5e5128a70e94cc0345ed086d54d0))
* script lang in DisqusCount component ([1a87b2e](https://github.com/ktquez/vue-disqus/commit/1a87b2e05569813dc185e50b4114d27540f929fc))
### [4.0.1](https://github.com/ktquez/vue-disqus/compare/v4.0.0...v4.0.1) (2020-07-02)

@@ -7,0 +28,0 @@

86

package.json
{
"name": "vue-disqus",
"version": "4.0.1",
"version": "5.1.0-alpha.0",
"description": "Vue component to integrate Disqus comments in your application, with support for SPA",
"main": "dist/vue-disqus.umd.js",
"module": "dist/vue-disqus.esm.js",
"unpkg": "dist/vue-disqus.min.js",
"browser": {
"./sfc": "src/vue-disqus.vue"
"types": "dist/index.d.ts",
"main": "dist/vue-disqus.cjs.js",
"browser": "dist/vue-disqus.es.js",
"module": "dist/vue-disqus.es.js",
"unpkg": "dist/vue-disqus.iife.js",
"jsdelivr": "dist/vue-disqus.iife.js",
"exports": {
".": {
"import": "./dist/vue-disqus.es.js",
"require": "./dist/vue-disqus.cjs.js"
}
},
"types": "index.d.ts",
"scripts": {
"dev": "rollup --config rollup.config.dev.js --watch",
"build": "npm run build:umd & npm run build:es & npm run build:unpkg",
"build:umd": "rollup --config rollup.config.prod.js --format umd --file dist/vue-disqus.umd.js",
"build:es": "rollup --config rollup.config.prod.js --format es --file dist/vue-disqus.esm.js",
"build:unpkg": "rollup --config rollup.config.prod.js --format iife --file dist/vue-disqus.min.js",
"demo:dev": "cd demo && npm run serve",
"demo:build": "cd demo && npm run build",
"demo:publish": "cp ./demo/dist/index.html ./demo/dist/200.html && surge ./demo/dist https://vue-disqus.surge.sh/",
"docs:dev": "./node_modules/.bin/vuepress dev docs --no-cache",
"docs:build": "./node_modules/.bin/vuepress build docs --no-cache",
"docs:publish": "gh-pages -d docs/.vuepress/dist",
"dev": "cd demo && vite",
"build": "npm-run-all -s clean build:*",
"build:vite": "vue-tsc --noEmit && vite build",
"build:types": "tsc --emitDeclarationOnly",
"clean": "rm -rf dist",
"release": "standard-version",
"test:unit": "jest",
"test:e2e": "node_modules/.bin/cypress run --headless",
"test:e2e:open": "node_modules/.bin/cypress open ",
"project:publish": "git push --tags origin master && npm run build && npm publish"
"project:publish": "git push --tags origin next && yarn build && npm publish --tag next"
},

@@ -48,35 +44,25 @@ "repository": {

"homepage": "https://github.com/ktquez/vue-disqus#readme",
"dependencies": {
"vue": "^3.0.5"
},
"devDependencies": {
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-commonjs": "^12.0.0",
"@rollup/plugin-node-resolve": "^8.0.0",
"@rollup/plugin-replace": "^2.3.2",
"@vue/eslint-config-standard": "^5.1.2",
"@vue/test-utils": "^1.0.3",
"@types/node": "^14.14.21",
"@vitejs/plugin-vue": "^1.2.1",
"@vue/compiler-sfc": "^3.0.5",
"@vue/eslint-config-standard": "^6.0.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.0.1",
"chokidar": "^3.4.0",
"cypress": "^4.7.0",
"eslint": "^7.1.0",
"eslint-plugin-cypress": "^2.11.1",
"eslint-plugin-import": "^2.20.2",
"eslint": "^7.23.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^6.2.2",
"eslint-plugin-vuejs-accessibility": "^0.1.3",
"gh-pages": "^3.0.0",
"jest": "^26.0.1",
"rollup": "^2.13.1",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-terser": "^6.1.0",
"rollup-plugin-vue": "^5.1.9",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-vue": "^7.8.0",
"eslint-plugin-vuejs-accessibility": "^0.6.1",
"npm-run-all": "^4.1.5",
"standard-version": "^8.0.0",
"surge": "^0.21.3",
"vue": "^2.6.11",
"vue-template-compiler": "^2.6.11",
"vuepress": "^1.5.0",
"vuepress-theme-default-vue-a11y": "^0.1.15",
"watchpack": "^1.6.1"
"typescript": "^4.1.3",
"vite": "^2.1.5",
"vue-tsc": "^0.0.15"
}
}

@@ -1,3 +0,10 @@

# vue-disqus
# vue-disqus for Vue 3
---
🔥 WORKING IN PROGRESS
🔥 HEADS UP! You are in the Vue 3 compatible branch, [check the branch for Vue 2 support](https://github.com/ktquez/vue-disqus).
---
Vue component to integrate Disqus comments in your application [Vue.js](http://vuejs.org/), with support for SPA and Vue 2.*

@@ -4,0 +11,0 @@

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc