Socket
Socket
Sign inDemoInstall

vue-docgen-cli

Package Overview
Dependencies
Maintainers
3
Versions
160
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vue-docgen-cli - npm Package Compare versions

Comparing version 4.34.3 to 4.34.4

11

CHANGELOG.md

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

## [4.34.4](https://github.com/vue-styleguidist/vue-styleguidist/compare/v4.34.3...v4.34.4) (2021-01-09)
### Bug Fixes
* **cli:** replace all instances of sep on windows ([7a76b92](https://github.com/vue-styleguidist/vue-styleguidist/commit/7a76b920219ac1fb650738459c177c19cf04dfa6))
## [4.34.3](https://github.com/vue-styleguidist/vue-styleguidist/compare/v4.34.2...v4.34.3) (2021-01-07)

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

3

lib/getDocsBlocks.js

@@ -114,4 +114,5 @@ "use strict";

exports.default = getDocsBlocks;
var separatorRE = new RegExp("\\" + path_1.sep, 'g');
function relativeUrl(rootPath, docFilePath) {
return path_1.relative(rootPath, docFilePath).replace(path_1.sep, '/');
return path_1.relative(rootPath, docFilePath).replace(separatorRE, '/');
}

@@ -118,0 +119,0 @@ function isParamTag(tag) {

{
"name": "vue-docgen-cli",
"version": "4.34.3",
"version": "4.34.4",
"scripts": {

@@ -31,3 +31,3 @@ "compile": "tsc -p ./tsconfig.build.json",

},
"gitHead": "f1965e2c745bb967caa7a32a4cf59cc12f952d69"
"gitHead": "abca2c475e843a496ae0487beafbd8e96b6f89b9"
}

@@ -74,4 +74,6 @@ import { dirname, join, relative, sep } from 'path'

const separatorRE = new RegExp(`\\${sep}`, 'g')
function relativeUrl(rootPath: string, docFilePath: string): string {
return relative(rootPath, docFilePath).replace(sep, '/')
return relative(rootPath, docFilePath).replace(separatorRE, '/')
}

@@ -78,0 +80,0 @@

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