Socket
Socket
Sign inDemoInstall

@vuepress/client

Package Overview
Dependencies
Maintainers
7
Versions
87
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vuepress/client - npm Package Compare versions

Comparing version 2.0.0-alpha.1 to 2.0.0-alpha.6

11

CHANGELOG.md

@@ -6,2 +6,13 @@ # Change Log

# [2.0.0-alpha.6](https://github.com/vuepress/vuepress-next/compare/v2.0.0-alpha.5...v2.0.0-alpha.6) (2020-12-09)
### Features
* **client:** remove built-in debug component ([a5962bb](https://github.com/vuepress/vuepress-next/commit/a5962bb82483f56800b33b4e35c50dcb49fd48b1))
# 2.0.0-alpha.1 (2020-12-01)

@@ -8,0 +19,0 @@

3

lib/app.js

@@ -10,3 +10,3 @@ import { computed, h } from 'vue';

import { siteData, pageData, resolvePageData, pageFrontmatterSymbol, resolvePageFrontmatter, pageHeadSymbol, resolvePageHead, pageHeadTitleSymbol, resolvePageHeadTitle, pageLangSymbol, resolvePageLang, routeLocaleSymbol, resolveRouteLocale, themeDataSymbol, resolveThemeData, themeLocaleDataSymbol, resolveThemeLocaleData, siteLocaleDataSymbol, resolveSiteLocaleData, useUpdateHead, } from './injections';
import { Content, Debug, OutboundLink } from './components';
import { Content, OutboundLink } from './components';
import { withBase } from './utils';

@@ -134,3 +134,2 @@ /**

app.component('Content', Content);
app.component('Debug', __DEV__ ? Debug : () => null);
app.component('OutboundLink', OutboundLink);

@@ -137,0 +136,0 @@ /* eslint-enable vue/match-component-file-name */

export * from './Content';
export * from './Debug';
export * from './OutboundLink';
export * from './Vuepress';
//# sourceMappingURL=index.d.ts.map
export * from './Content';
export * from './Debug';
export * from './OutboundLink';
export * from './Vuepress';
//# sourceMappingURL=index.js.map

@@ -23,3 +23,3 @@ import { ref, readonly } from 'vue';

};
if (module.hot) {
if (import.meta.webpackHot) {
// reuse vue HMR runtime

@@ -26,0 +26,0 @@ __VUE_HMR_RUNTIME__.updatePageData = (newPageData) => {

@@ -7,4 +7,4 @@ import { readonly, ref } from 'vue';

};
if (module.hot) {
module.hot.accept('@internal/pagesData', () => {
if (import.meta.webpackHot) {
import.meta.webpackHot.accept('@internal/pagesData', () => {
pagesData.value = readonly(pagesDataRaw);

@@ -11,0 +11,0 @@ console.log('[vuepress] pagesData is updated');

@@ -7,4 +7,4 @@ import { readonly, ref } from 'vue';

};
if (module.hot) {
module.hot.accept('@internal/siteData', () => {
if (import.meta.webpackHot) {
import.meta.webpackHot.accept('@internal/siteData', () => {
siteData.value = readonly(siteDataRaw);

@@ -11,0 +11,0 @@ console.log('[vuepress] siteData is updated');

{
"name": "@vuepress/client",
"version": "2.0.0-alpha.1",
"version": "2.0.0-alpha.6",
"description": "Client package of VuePress",

@@ -31,5 +31,5 @@ "keywords": [

"dependencies": {
"@vuepress/shared": "2.0.0-alpha.1",
"vue": "^3.0.0",
"vue-router": "4.0.0-rc.5"
"@vuepress/shared": "2.0.0-alpha.6",
"vue": "^3.0.4",
"vue-router": "4.0.1"
},

@@ -39,3 +39,3 @@ "publishConfig": {

},
"gitHead": "1fd0bfafc443cddfb40af6647353ef02708b739a"
"gitHead": "5eae35bda71fe7a4a01cfb636027b20b43b1d430"
}

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

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc