Slides and demo for Component Documentation Made Easy (VueConf.us 2020)
Ressource for nov 30th training
One framework. Mobile & desktop.
elevatebart/AnomalyDetection 0
Anomaly Detection with R
🐠 Babel is a compiler for writing next generation JavaScript.
BootstrapVue, with over 40 plugins, more than 80 custom components and over 300 icons, provides one of the most comprehensive implementations of Bootstrap v4 components and grid system for Vue.js. With extensive and automated WAI-ARIA accessibility markup.
Lightweight UI components for Vue.js based on Bulma
elevatebart/codesandbox-client 0
An online IDE for rapid web development
push eventvue-styleguidist/vue-styleguidist
commit sha b91e59dc0724c96429d999c3c4d080d4c1cb622e
docs: fix some broken links #976
push time in 2 days
issue commentvue-styleguidist/vue-styleguidist
Hey @wsjscss thank you for your remark.
Woopsies !! The proper link does not have docs in it
https://vue-styleguidist.github.io/Configuration.html#styles
styles are very much a thing.
Note: If you write the styles in a separate file, and give the styles config the path to your file, you will get style Hot Module Replacement (HMR). When running the styleguide, if you change the styles, when you save the styles file, it will update the styles in your styleguide.
I hope you enjoy the Developer Experience.
comment created time in 2 days
issue commentvuejs/vetur
Getting code actions from ''Vetur', 'Eslint'' takes too long!
with formatting ;):
{
"eslint.alwaysShowStatus": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"html.format.contentUnformatted": "",
"javascript.format.enable": false,
"eslint.options": { "extensions": [".html", ".js", ".vue", ".jsx"] },
"editor.codeActionsOnSave": { "source.fixAll.eslint": true },
"editor.fontFamily": "Fira Code, Menlo, Monaco, 'Courier New', monospace",
"editor.fontLigatures": true,
"editor.fontSize": 14,
"window.zoomLevel": 0,
"vetur.format.defaultFormatter.js": "vscode-typescript",
"vetur.format.defaultFormatter.html": "prettier",
"javascript.format.insertSpaceBeforeFunctionParenthesis": true,
"explorer.confirmDelete": false,
"git.autofetch": true,
"editor.formatOnSave": true
}
comment created time in 4 days
issue commentvue-styleguidist/vue-styleguidist
`href` is missing in the section heading
I will definitely look into it.
comment created time in 4 days
push eventvue-styleguidist/vue-styleguidist
commit sha 3c52d80dc56456555b33121b75d2e45d372167ff
chore(deps): suppress unnecessary peerDeps warning
commit sha 43cc77299a950974b1ce0f0e1ee5f52698384506
chore: update lockfile
commit sha 0b29587df6f8b24028f5afefb5de5a898e92cf58
Merge pull request #974 from ikatyang/chore/deps/suppress-unnecessary-peerdeps-warnings chore(deps): suppress unnecessary peerDeps warning
push time in 4 days
PR merged vue-styleguidist/vue-styleguidist
pr closed time in 4 days
pull request commentvue-styleguidist/vue-styleguidist
chore(deps): suppress unnecessary peerDeps warning
Oh thank you @ikatyang! Great PR! simple review, and I did not know about this peerDependenciesMeta.
You made my day
comment created time in 4 days
issue commentvue-styleguidist/vue-styleguidist
`href` is missing in the section heading
I am glad it worked! You are right I think I should remove underline and pointer if there is no link. I will fix this soon.
All href are built at the root level.
The reason why href are provided by the root components are:
- We need urls to be unique so that we can manage routing properly. If 2 components have the same name we can calculate slugs to avoid conflicts.
- A feature is in the works to be able to link one component's documentation to another. To resolve these links we need all urls to be available for every component.
I hope my answer helps
comment created time in 5 days
issue commentvue-styleguidist/vue-styleguidist
Documenting events fired from eventBus
Hello @Alona2156 ,
You are not alone to face this issue. Though I have always hear that using the eventBus pattern can be regretfully painful to debug, and I would implore you to reconsider and maybe use vuex store instead, there is a way to have those events show up in your doc.
You can use the @fires doclet linked below.
https://github.com/vue-styleguidist/vue-styleguidist/issues/836
It is not documented properly yet. If you find in your heart to do it, and send a pull request, I would really appreciate it.
Thank you in advance Bart
comment created time in 6 days
Pull request review commentznck/preview
fix: use provided root directory
Options: } export async function run(argv: any) {+ if (argv._[0] && !/^(build|serve)$/i.test(argv._[0])) {
Could we use a destructuring pattern to extract params here?
// insert serve option between path and preview
const [rootPath] = argv._;
if (rootPath && !/^(build|serve)$/i.test(rootPath)) {
comment created time in 6 days
push eventvue-styleguidist/vue-styleguidist
commit sha 82cd3999ddf48c8c4fdbb137be4f6773d05412dc
docs: fix customized example
push time in 6 days
issue commentvue-styleguidist/vue-styleguidist
styleguidist:build removes some HTML classes that are required for styling
I tried to reproduce this issue without success. It is very probably due to the webpack configuration that styleguidist is using.
What framework/library/rendering tool are you using to build and render your library?
Nuxt? Quasar?
It could as well be a 3rd party webpack plugin like purge-css that removes all the "unused" classes in production.
If it's the case, remove this plugin from your webpack config, for styleguidist, and everything should return to normal.
comment created time in 6 days
issue closedvue-styleguidist/vue-styleguidist
some errors in the examples demo
I run the demo on my mac.
https://github.com/vue-styleguidist/vue-styleguidist/tree/dev/examples/basic/

Is it a bug ?
closed time in 6 days
zhaozhe0831issue commentvue-styleguidist/vue-styleguidist
some errors in the examples demo
It was a bug, without impact on prod but a bug nonetheless. I fixed it in 4.32.3
comment created time in 6 days
issue closedvue-styleguidist/vue-styleguidist
`href` is missing in the section heading
Current behavior
There is no href for headings, and there are warnings:
Warning: Failed prop type: The prop `href` is marked as required in `SectionHeadingRenderer`, but its value is `undefined`.
<!-- the current output html for the heading -->
<h1 id="components" class="rsg--heading-14 rsg--heading1-15">
<a class="rsg--sectionName-11">Components</a>
</h1>
To reproduce
mkdir no-heading-href-repro
cd no-heading-href-repro
yarn init -y
yarn add vue vue-loader vue-styleguidist vue-template-compiler webpack
echo '
const path = require("path");
const { VueLoaderPlugin } = require("vue-loader");
module.exports = {
sections: [
{
name: "Components",
components: path.resolve(__dirname, "./src/components/*.vue"),
},
],
webpackConfig: {
module: { rules: [{ test: /\.vue$/, loader: "vue-loader" }] },
plugins: [new VueLoaderPlugin()],
},
};
' > styleguide.config.js
mkdir -p src/components
echo '
<template>
<div>Foo</div>
</template>
<script>
export default {
name: "Foo",
};
</script>
' > src/components/Foo.vue
yarn vue-styleguidist server --open
Expected behavior
There should be a href for the heading "Components".
Environments
- vue-styleguidist: 4.32.2
closed time in 6 days
ikatyangissue commentvue-styleguidist/vue-styleguidist
`href` is missing in the section heading
Feel free to re-open if it is still failing
comment created time in 6 days
push eventvue-styleguidist/vue-styleguidist
commit sha 223e9d3db733f55df4a151e8c53142e4dacb9834
chore: update pnpm lock
commit sha 3607fa9d54944032febe24af884c53698931c0dc
docs: fixed the url from Components.html to Configuration.html
commit sha f45fdf6f5fbdb500cbcb9754d6645d3a15ba1d91
Merge pull request #968 from zhaozhe0831/dev docs: fixed the url from Components.html to Configuration.html
commit sha 9e28ebf18b4e0cea1341756d45747b1c8173af48
fix: no undefined consts
commit sha eb6f3e00e96f4c230fb0276895a738014ca1c9aa
Merge pull request #970 from ikatyang/fix/no-undefined-consts fix: no undefined consts
commit sha 0aa01cda611164cd5ace1a091fe0ab93ff7861cf
fix: remove warning on arguments (description req)
commit sha 1aaf4ee4569848202f009e19529a541b9e4d0840
fix: warning on SectionHeader
commit sha dce2b1b5448b8ef2f720958cf1d08934128cc81f
Merge pull request #972 from vue-styleguidist/dev chore: deliver
push time in 6 days
PR merged vue-styleguidist/vue-styleguidist
pr closed time in 6 days
PR opened vue-styleguidist/vue-styleguidist
pr created time in 6 days
issue commentvue-styleguidist/vue-styleguidist
`href` is missing in the section heading
agreed, and I just fixed it
comment created time in 6 days
push eventvue-styleguidist/vue-styleguidist
commit sha 1aaf4ee4569848202f009e19529a541b9e4d0840
fix: warning on SectionHeader
push time in 6 days
push eventvue-styleguidist/vue-styleguidist
commit sha 3607fa9d54944032febe24af884c53698931c0dc
docs: fixed the url from Components.html to Configuration.html
commit sha f45fdf6f5fbdb500cbcb9754d6645d3a15ba1d91
Merge pull request #968 from zhaozhe0831/dev docs: fixed the url from Components.html to Configuration.html
commit sha 9e28ebf18b4e0cea1341756d45747b1c8173af48
fix: no undefined consts
commit sha eb6f3e00e96f4c230fb0276895a738014ca1c9aa
Merge pull request #970 from ikatyang/fix/no-undefined-consts fix: no undefined consts
commit sha 0aa01cda611164cd5ace1a091fe0ab93ff7861cf
fix: remove warning on arguments (description req)
commit sha 9bd373e742e8f476004ad75c2017a5082edb4fe8
docs: first draft of the customization guide
push time in 6 days
push eventvue-styleguidist/vue-styleguidist
commit sha 0aa01cda611164cd5ace1a091fe0ab93ff7861cf
fix: remove warning on arguments (description req)
push time in 6 days
issue commentvue-styleguidist/vue-styleguidist
some errors in the examples demo
it might very well be a mistake on my part indeed. Let me check that.
comment created time in 6 days
issue openedBlack-Kro/kro-ui
Radio: 404 on the documentation
Describe the bug Go to url => 404
To Reproduce https://ui.black-kro.dev/components/radio
created time in 6 days
push eventvue-styleguidist/vue-styleguidist
commit sha 9e28ebf18b4e0cea1341756d45747b1c8173af48
fix: no undefined consts
commit sha eb6f3e00e96f4c230fb0276895a738014ca1c9aa
Merge pull request #970 from ikatyang/fix/no-undefined-consts fix: no undefined consts
push time in 6 days
PR merged vue-styleguidist/vue-styleguidist
This fixes an issue where the homepageUrl is always pointed to undefined:
Warning: Failed prop type: The prop `homepageUrl` is marked as required in `StyleguideFooterRenderer`, but its value is `undefined`.
In addition to the above case, this also fixes the similar issues I found in this repo while investigating.
pr closed time in 6 days
pull request commentvue-styleguidist/vue-styleguidist
Thank you very much @ikatyang , good catch.
comment created time in 6 days
startedJessicaSachs/open-sorceress
started time in 6 days
issue closedvue-styleguidist/vue-styleguidist
[Docs bug] about the url of locallyRegisterComponents page

now, the url is https://vue-styleguidist.github.io/Configuration.html#locallyRegisterComponents
it's correct.
But it can't open the hash of the page.
in fact, this url https://vue-styleguidist.github.io/Configuration.html#locallyregistercomponents can open the locallyRegisterComponents page.

I think the bug is here, in the side bar.

but I didn't find the locallyregistercomponents in the git... so I didn't pull request...
closed time in 7 days
zhaozhe0831push eventvue-styleguidist/vue-styleguidist
commit sha 3607fa9d54944032febe24af884c53698931c0dc
docs: fixed the url from Components.html to Configuration.html
commit sha f45fdf6f5fbdb500cbcb9754d6645d3a15ba1d91
Merge pull request #968 from zhaozhe0831/dev docs: fixed the url from Components.html to Configuration.html
push time in 7 days
PR merged vue-styleguidist/vue-styleguidist
I have known the bug #967 How to fixed.
pr closed time in 7 days
issue commentvuejs/vetur
Getting code actions from ''Vetur', 'Eslint'' takes too long!
It's the two waiting for each other I believe.
comment created time in 9 days
issue commentvue-styleguidist/vue-styleguidist
styleguidist:build removes some HTML classes that are required for styling
Hello @CarsonBain,
You are absolutely right. The CSS classes of vue-styleguidist cannot be relied upon. Styleduidist is rendering using React... and uses JSS (CSS-in-JS) to apply its classes and styling. Therefore the class names are generated and are shortened in production to make the bundle size smaller.
So if you want to change any element of the React rendering, anything outside of your examples, you should prefer using the styles config property instead of pure css classes in external files.
Here is a cookbook recipe that might help you along the way
I hope this helps a little.
comment created time in 9 days
issue openedvue-styleguidist/vue-styleguidist
External JSON/JS Documentation files
<!-- Consider opening a pull request instead: it’s a more productive way to discuss new features -->
The problem
Big components quickly spin out of control in size.
Proposed solution
Instead of using JSDoc to document our component, use an extenal JS or JSON file and merge it with the documentation object right before returning it.
created time in 9 days
issue commentvue-styleguidist/vue-styleguidist
Parse vue 3 emit member to the otions object
There would be typescript support as well.
comment created time in 9 days
issue openedvue-styleguidist/vue-styleguidist
Parse vue 3 emit member to the otions object
<!-- Consider opening a pull request instead: it’s a more productive way to discuss new features -->
The problem
In Vue 3 we can use an "emit" member to the options bag to tell parent components what events are available.
It would be a perfect place to gather information about those events (type, description, payload)
https://v3.vuejs.org/guide/component-custom-events.html#validate-emitted-events
Proposed solution
export default {
emits: {
/**
* Click on the button
*/
click: null,
/**
* Validate submit event
* @arg {object} payload
* @arg {payload.email} String email of the registered user
* @arg {payload.password} String password of the registered user
*/
submit: ({ email, password }) => {
if (email && password) {
return true
} else {
console.warn('Invalid submit event payload!')
return false
}
}
},
}
created time in 9 days
issue commentvuejs/vetur
Getting code actions from ''Vetur', 'Eslint'' takes too long!
Caveat: template autofix will not be proceeded.
comment created time in 9 days
issue commentvuejs/vetur
Getting code actions from ''Vetur', 'Eslint'' takes too long!
It seems to work and keep both extensions at bay.
comment created time in 9 days
issue commentvuejs/vetur
Getting code actions from ''Vetur', 'Eslint'' takes too long!
How about disabling eslint code action from eslint in Vue files? Keeping only vetur actions.
{
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"[vue]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": false
}
},
}
Would that help? I tried on my local, will report soon.
comment created time in 9 days
push eventvue-styleguidist/vue-styleguidist-example
commit sha ef5af83befe3bf680736276a1175777030db0ec3
Bump lodash from 4.17.15 to 4.17.19 Bumps [lodash](https://github.com/lodash/lodash) from 4.17.15 to 4.17.19. - [Release notes](https://github.com/lodash/lodash/releases) - [Commits](https://github.com/lodash/lodash/compare/4.17.15...4.17.19) Signed-off-by: dependabot[bot] <[email protected]>
commit sha 0f3faf5a9dede90d48a12bbd02ac2288b092c95c
Merge pull request #2 from vue-styleguidist/dependabot/npm_and_yarn/lodash-4.17.19 Bump lodash from 4.17.15 to 4.17.19
push time in 9 days
PR merged vue-styleguidist/vue-styleguidist-example
Bumps lodash from 4.17.15 to 4.17.19. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/lodash/lodash/releases">lodash's releases</a>.</em></p> <blockquote> <h2>4.17.16</h2> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/lodash/lodash/commit/d7fbc52ee0466a6d248f047b5d5c3e6d1e099056"><code>d7fbc52</code></a> Bump to v4.17.19</li> <li><a href="https://github.com/lodash/lodash/commit/2e1c0f22f425e9c013815b2cd7c2ebd51f49a8d6"><code>2e1c0f2</code></a> Add npm-package</li> <li><a href="https://github.com/lodash/lodash/commit/1b6c282299f4e0271f932b466c67f0f822aa308e"><code>1b6c282</code></a> Bump to v4.17.18</li> <li><a href="https://github.com/lodash/lodash/commit/a370ac81408de2da77a82b3c4b61a01a3b9c2fac"><code>a370ac8</code></a> Bump to v4.17.17</li> <li><a href="https://github.com/lodash/lodash/commit/1144918f3578a84fcc4986da9b806e63a6175cbb"><code>1144918</code></a> Rebuild lodash and docs</li> <li><a href="https://github.com/lodash/lodash/commit/3a3b0fd339c2109563f7e8167dc95265ed82ef3e"><code>3a3b0fd</code></a> Bump to v4.17.16</li> <li><a href="https://github.com/lodash/lodash/commit/c84fe82760fb2d3e03a63379b297a1cc1a2fce12"><code>c84fe82</code></a> fix(zipObjectDeep): prototype pollution (<a href="https://github-redirect.dependabot.com/lodash/lodash/issues/4759">#4759</a>)</li> <li><a href="https://github.com/lodash/lodash/commit/e7b28ea6cb17b4ca021e7c9d66218c8c89782f32"><code>e7b28ea</code></a> Sanitize sourceURL so it cannot affect evaled code (<a href="https://github-redirect.dependabot.com/lodash/lodash/issues/4518">#4518</a>)</li> <li><a href="https://github.com/lodash/lodash/commit/0cec225778d4ac26c2bac95031ecc92a94f08bbb"><code>0cec225</code></a> Fix lodash.isEqual for circular references (<a href="https://github-redirect.dependabot.com/lodash/lodash/issues/4320">#4320</a>) (<a href="https://github-redirect.dependabot.com/lodash/lodash/issues/4515">#4515</a>)</li> <li><a href="https://github.com/lodash/lodash/commit/94c3a8133cb4fcdb50db72b4fd14dd884b195cd5"><code>94c3a81</code></a> Document matches* shorthands for over* methods (<a href="https://github-redirect.dependabot.com/lodash/lodash/issues/4510">#4510</a>) (<a href="https://github-redirect.dependabot.com/lodash/lodash/issues/4514">#4514</a>)</li> <li>Additional commits viewable in <a href="https://github.com/lodash/lodash/compare/4.17.15...4.17.19">compare view</a></li> </ul> </details> <details> <summary>Maintainer changes</summary> <p>This version was pushed to npm by <a href="https://www.npmjs.com/~mathias">mathias</a>, a new releaser for lodash since your current version.</p> </details> <br />
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
<details> <summary>Dependabot commands and options</summary> <br />
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)@dependabot use these labelswill set the current labels as the default for future PRs for this repo and language@dependabot use these reviewerswill set the current reviewers as the default for future PRs for this repo and language@dependabot use these assigneeswill set the current assignees as the default for future PRs for this repo and language@dependabot use this milestonewill set the current milestone as the default for future PRs for this repo and language
You can disable automated security fix PRs for this repo from the Security Alerts page.
</details>
pr closed time in 9 days
push eventvue-styleguidist/vue-styleguidist-example
commit sha f427ff9b9747f5d46c6efab17a01b79165d64b3f
Bump http-proxy from 1.18.0 to 1.18.1 Bumps [http-proxy](https://github.com/http-party/node-http-proxy) from 1.18.0 to 1.18.1. - [Release notes](https://github.com/http-party/node-http-proxy/releases) - [Changelog](https://github.com/http-party/node-http-proxy/blob/master/CHANGELOG.md) - [Commits](https://github.com/http-party/node-http-proxy/compare/1.18.0...1.18.1) Signed-off-by: dependabot[bot] <[email protected]>
commit sha d1e24f1e60c5ffaa2fca6595275409f80ac91d5c
Merge pull request #6 from vue-styleguidist/dependabot/npm_and_yarn/http-proxy-1.18.1 Bump http-proxy from 1.18.0 to 1.18.1
push time in 9 days
PR merged vue-styleguidist/vue-styleguidist-example
Bumps http-proxy from 1.18.0 to 1.18.1. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/http-party/node-http-proxy/blob/master/CHANGELOG.md">http-proxy's changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/http-party/node-http-proxy/compare/1.18.0...v1.18.1">v1.18.1</a> - 2020-05-17</h2> <h3>Merged</h3> <ul> <li>Skip sending the proxyReq event when the expect header is present <a href="https://github-redirect.dependabot.com/http-party/node-http-proxy/pull/1447"><code>#1447</code></a></li> <li>Remove node6 support, add node12 to build <a href="https://github-redirect.dependabot.com/http-party/node-http-proxy/pull/1397"><code>#1397</code></a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/http-party/node-http-proxy/commit/9b96cd725127a024dabebec6c7ea8c807272223d"><code>9b96cd7</code></a> 1.18.1</li> <li><a href="https://github.com/http-party/node-http-proxy/commit/335aeeba2f0c286dc89c402eeb76af47834c89a3"><code>335aeeb</code></a> Skip sending the proxyReq event when the expect header is present (<a href="https://github-redirect.dependabot.com/http-party/node-http-proxy/issues/1447">#1447</a>)</li> <li><a href="https://github.com/http-party/node-http-proxy/commit/dba39668ba4c9ad461316e834b2d64b77e1ca88e"><code>dba3966</code></a> Remove node6 support, add node12 to build (<a href="https://github-redirect.dependabot.com/http-party/node-http-proxy/issues/1397">#1397</a>)</li> <li>See full diff in <a href="https://github.com/http-party/node-http-proxy/compare/1.18.0...1.18.1">compare view</a></li> </ul> </details> <br />
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
<details> <summary>Dependabot commands and options</summary> <br />
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)@dependabot use these labelswill set the current labels as the default for future PRs for this repo and language@dependabot use these reviewerswill set the current reviewers as the default for future PRs for this repo and language@dependabot use these assigneeswill set the current assignees as the default for future PRs for this repo and language@dependabot use this milestonewill set the current milestone as the default for future PRs for this repo and language
You can disable automated security fix PRs for this repo from the Security Alerts page.
</details>
pr closed time in 9 days
issue commentstorybookjs/storybook
It is overall compatible. But event emitting in the setup function is not dealt with yet.
For this, I still need a performant way to enter setup functions and detect those emits.
Since the functions can be in multiple files it might take a little time.
comment created time in 10 days
create barnchvue-styleguidist/vue-styleguidist
created branch time in 10 days
issue commentvue-styleguidist/vue-styleguidist
Sidebar links not present / not working
You should be able to remove the react-styleguidist dependency
comment created time in 10 days
push eventvue-styleguidist/vue-styleguidist
commit sha 223e9d3db733f55df4a151e8c53142e4dacb9834
chore: update pnpm lock
push time in 10 days
push eventvue-styleguidist/vue-styleguidist
commit sha ca74d1e3c62bf410113481e703d3e965a15ba868
Merge pull request #959 from vue-styleguidist/delivery chore: v4.32.1 [skip ci]
commit sha ba1c341808427d529a28abcac7a11433d2ad3389
fix: update react-styleguidist and merge conflicts
commit sha a9a70053feb67312929899d5ded40c9f00581614
test: fix tests after upgrade of rsg
commit sha e5f788b6d4a10714a1154e1d10dad5eb1848a2cb
Merge pull request #961 from vue-styleguidist/updgarde-rsg Upgrade React styleguidist dependency
commit sha 1924fed422bd142f6da4180f319958e9c45d9e96
Merge pull request #962 from vue-styleguidist/dev chore: deliver
push time in 10 days
PR merged vue-styleguidist/vue-styleguidist
pr closed time in 10 days
issue openedvue-styleguidist/vue-styleguidist
Use doctrine or TypeScript AST format as a standard format for types
<!-- Consider opening a pull request instead: it’s a more productive way to discuss new features -->
The problem
When using vue-docgen-api, there are a few items whose format are not implemented completely (value lists, arrays, objects) I would like a format that is more complete and easy to use by a compiler
Proposed solution
Use the set of tests coming from typescript (doctrine is a little dated) an make them pass with typeScript types and their equivalent TSDoc/JSDoc
created time in 11 days
push eventelevatebart/vue-cli-plugin-template-loader
commit sha e3dc83a8800d22591ff648d492a28722be7ce7d2
chore(deps): bump http-proxy from 1.18.0 to 1.18.1 (#26) Bumps [http-proxy](https://github.com/http-party/node-http-proxy) from 1.18.0 to 1.18.1. - [Release notes](https://github.com/http-party/node-http-proxy/releases) - [Changelog](https://github.com/http-party/node-http-proxy/blob/master/CHANGELOG.md) - [Commits](https://github.com/http-party/node-http-proxy/compare/1.18.0...1.18.1) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
push time in 11 days
PR merged elevatebart/vue-cli-plugin-template-loader
Bumps http-proxy from 1.18.0 to 1.18.1. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/http-party/node-http-proxy/blob/master/CHANGELOG.md">http-proxy's changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/http-party/node-http-proxy/compare/1.18.0...v1.18.1">v1.18.1</a> - 2020-05-17</h2> <h3>Merged</h3> <ul> <li>Skip sending the proxyReq event when the expect header is present <a href="https://github-redirect.dependabot.com/http-party/node-http-proxy/pull/1447"><code>#1447</code></a></li> <li>Remove node6 support, add node12 to build <a href="https://github-redirect.dependabot.com/http-party/node-http-proxy/pull/1397"><code>#1397</code></a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/http-party/node-http-proxy/commit/9b96cd725127a024dabebec6c7ea8c807272223d"><code>9b96cd7</code></a> 1.18.1</li> <li><a href="https://github.com/http-party/node-http-proxy/commit/335aeeba2f0c286dc89c402eeb76af47834c89a3"><code>335aeeb</code></a> Skip sending the proxyReq event when the expect header is present (<a href="https://github-redirect.dependabot.com/http-party/node-http-proxy/issues/1447">#1447</a>)</li> <li><a href="https://github.com/http-party/node-http-proxy/commit/dba39668ba4c9ad461316e834b2d64b77e1ca88e"><code>dba3966</code></a> Remove node6 support, add node12 to build (<a href="https://github-redirect.dependabot.com/http-party/node-http-proxy/issues/1397">#1397</a>)</li> <li>See full diff in <a href="https://github.com/http-party/node-http-proxy/compare/1.18.0...1.18.1">compare view</a></li> </ul> </details> <br />
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
<details> <summary>Dependabot commands and options</summary> <br />
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)@dependabot use these labelswill set the current labels as the default for future PRs for this repo and language@dependabot use these reviewerswill set the current reviewers as the default for future PRs for this repo and language@dependabot use these assigneeswill set the current assignees as the default for future PRs for this repo and language@dependabot use this milestonewill set the current milestone as the default for future PRs for this repo and language
You can disable automated security fix PRs for this repo from the Security Alerts page.
</details>
pr closed time in 11 days
PR opened vue-styleguidist/vue-styleguidist
pr created time in 11 days
push eventvue-styleguidist/vue-styleguidist
commit sha ba1c341808427d529a28abcac7a11433d2ad3389
fix: update react-styleguidist and merge conflicts
commit sha a9a70053feb67312929899d5ded40c9f00581614
test: fix tests after upgrade of rsg
commit sha e5f788b6d4a10714a1154e1d10dad5eb1848a2cb
Merge pull request #961 from vue-styleguidist/updgarde-rsg Upgrade React styleguidist dependency
push time in 11 days
PR merged vue-styleguidist/vue-styleguidist
closes #960
pr closed time in 11 days
issue closedvue-styleguidist/vue-styleguidist
Sidebar links not present / not working
Current behavior
I run styleguidist on my Vue application, but the links in the menu do not work when I click on them. They should navigate to /#section or /#componentname, but the href properties are missing
<!-- A clear and concise description of what the bug is -->
To reproduce Install vue styleguidist in a project run
npm run styleguide
Go to localhost:6060 and try to navigate to a component.
Or checkout my repository navigate to the folder library
npm install
npm run styleguide
Go to localhost:6060 and try to navigate to a component.
<!-- Post a link to a reproducible demo repository here. -->
https://github.com/jelmerveen/vue-component-library-test/tree/visuals/styleguidist
Expected behavior I expect the links in the sidebar to work.
closed time in 11 days
jelmerveenPR opened vue-styleguidist/vue-styleguidist
closes #960
pr created time in 11 days
push eventvue-styleguidist/vue-styleguidist
commit sha a9a70053feb67312929899d5ded40c9f00581614
test: fix tests after upgrade of rsg
push time in 11 days
issue commentvue-styleguidist/vue-styleguidist
Sidebar links not present / not working
It seems to be because of a fix on [email protected]
As a workaround, you can run the following command, that will temporarily bring the links back
npm install [email protected]
I am working on a more definitive fix
comment created time in 11 days
issue commentvue-styleguidist/vue-styleguidist
Sidebar links not present / not working
I just tried with npm and I reproduce your issue. It could be due to an issue in a dependency.
I will check the package-lock
comment created time in 11 days
issue commentvue-styleguidist/vue-styleguidist
Sidebar links not present / not working
In short, I do not find anything obviously wrong with you repo.
What browser are you using?
Here is what I tried
git clone https://github.com/jelmerveen/vue-component-library-test.git
git checkout visuals/styleguidist
yarn install
yarn styleguide
I use yarn because of the yarn.lock file in the library folder. I can try to use npm instead.
comment created time in 11 days
issue commentvue-styleguidist/vue-styleguidist
Sidebar links not present / not working
Hello @jelmerveen Thank you for reporting this,
I will clone your repo and see if I can help. Give me a few minutes.
comment created time in 11 days
PR opened vuejs/rollup-plugin-vue
Changes proposed in this pull request: SFCs can have a script block only In this case, the render function should not be replaced by the empty template function. It should be left alone.
/ping @znck @jtommy
pr created time in 12 days
fork elevatebart/rollup-plugin-vue
Roll .vue files
https://vuejs.github.io/rollup-plugin-vue
fork in 12 days
issue closedvue-styleguidist/vue-styleguidist
build error on [email protected] with vue-inbrowser-compiler-utils@^4.31.2
Current behavior
Upgrade from [email protected] to [email protected] caused a regression with dependency vue-inbrowser-compiler-utils@^4.31.2 that doesn't exist (last version for this package is 4.31.1).
npm ERR! code ETARGET
npm ERR! notarget No matching version found for vue-inbrowser-compiler-utils@^4.31.2.
npm ERR! notarget In most cases you or one of your dependencies are requesting
npm ERR! notarget a package version that doesn't exist.
npm ERR! notarget
npm ERR! notarget It was specified as a dependency of 'vue-docgen-api'
npm ERR! notarget
closed time in 12 days
sebpalluelissue closedvue-styleguidist/vue-styleguidist
No matching version found for vue-inbrowser-compiler-utils@^4.31.2
Current behavior
Installing @storybook/addon-docs fails with the following error:
npm ERR! notarget No matching version found for vue-inbrowser-compiler-utils@^4.31.2. npm ERR! notarget In most cases you or one of your dependencies are requesting npm ERR! notarget a package version that doesn't exist. npm ERR! notarget npm ERR! notarget It was specified as a dependency of 'vue-docgen-api'
There's no such version published on npm from what I can see: https://www.npmjs.com/package/vue-inbrowser-compiler-utils
closed time in 12 days
w0rseissue commentvue-styleguidist/vue-styleguidist
build error on [email protected] with vue-inbrowser-compiler-utils@^4.31.2
Thank you @sebpalluel,
I believe the build was faulty and is now fixed.
comment created time in 12 days
issue commentvue-styleguidist/vue-styleguidist
No matching version found for vue-inbrowser-compiler-utils@^4.31.2
Would you please check?
comment created time in 12 days
issue commentvue-styleguidist/vue-styleguidist
No matching version found for vue-inbrowser-compiler-utils@^4.31.2
I believe it is now fixed
comment created time in 12 days
PR merged vue-styleguidist/vue-styleguidist
pr closed time in 12 days
push eventvue-styleguidist/vue-styleguidist
commit sha 33a2e6c2405edf2767bb9b103e395935e4849a06
chore: v4.32.1 [skip ci]
commit sha ca74d1e3c62bf410113481e703d3e965a15ba868
Merge pull request #959 from vue-styleguidist/delivery chore: v4.32.1 [skip ci]
push time in 12 days
PR opened vue-styleguidist/vue-styleguidist
pr created time in 12 days
push eventvue-styleguidist/vue-styleguidist
commit sha 33a2e6c2405edf2767bb9b103e395935e4849a06
chore: v4.32.1 [skip ci]
push time in 12 days
created tagvue-styleguidist/vue-styleguidist
Created from react styleguidist for Vue Components with a living style guide
created time in 12 days
issue openedvuejs/events
VueJs Chicago Meetup - Back To School online meetup
Event
What is your event called?
VueJs Chicago Meetup - Back To School online meetup
Where is your event located?
Online (Zoom, Youtube, link posted on twitter)
When is your event happening?
Sept. 15th 5:30 PM CST
What is your event about?
- A GridSome beginners interview overview
- An introduction to vue-formulate
Where can people learn more about your event / reserve their spot?
https://www.meetup.com/Chicago-Vue-js/events/272152197/
Host Info
Who is hosting this event?
Bart Ledoux and Daniel Richmond
Where can people learn more about the group (e.g., Meetup.com page, personal site, etc.)?
https://www.meetup.com/Chicago-Vue-js/
created time in 12 days
push eventvue-styleguidist/vue-styleguidist
commit sha d81ac171cd3f197925b8a2be5cbd93955fccedd4
build: fix npx lerna version release
push time in 12 days
push eventvue-styleguidist/vue-styleguidist
commit sha 17472c3a26a2b43da26de6169388b35f8338195f
fix: parsing of validator with a function ref closes #954
commit sha 907271f6f6beaf0f70c7f51ac1fe070731e74551
feat: extract footer from styleguidist for custom #935
commit sha 9a802c8323ca0177c5c017b3e5946270e382406f
fix: use the footer somewhere else than in example
commit sha 37c36134ba7047dbc8dd7c2de29f18f472259c4c
Merge pull request #956 from vue-styleguidist/dev chore: deliver
push time in 13 days
PR merged vue-styleguidist/vue-styleguidist
pr closed time in 13 days
PR opened vue-styleguidist/vue-styleguidist
pr created time in 13 days
push eventvue-styleguidist/vue-styleguidist
commit sha 9a802c8323ca0177c5c017b3e5946270e382406f
fix: use the footer somewhere else than in example
push time in 13 days
push eventvue-styleguidist/vue-styleguidist
commit sha 907271f6f6beaf0f70c7f51ac1fe070731e74551
feat: extract footer from styleguidist for custom #935
push time in 13 days
issue commentvue-styleguidist/vue-styleguidist
Customize Footer of original template
Hello @thovu162020,
First thank you for taking the time to ask for what you need. It does not only help me but anybody that wants to build a styleguide and faces the same issues as you do.
As for making the footer its own component, that is a brilliant idea and I will implement it as part of fixing this request.
On the documentation issue, there is just too many customizable components to list. What would you think if I wrote a guide with all the steps?
- discover what components can be overridden using the react dev tools
- find where in the codebase the customizable components can be found in vue-styleguidist and if not there, in react-styleguidist
- start with the original code and iterate through changes
Would you be open to proof read it?
comment created time in 13 days
issue commentvue-styleguidist/vue-styleguidist
@requires alternative to mark a dependency without removing it from the main docs tree
I remember @davatron5000 talking about this kind of feature being useful in Austin TX. We might even be able to go one step further and automatically extract which components are used from the code.
The @use tag is a rendering of a link.
One non-obvious part of the making of this feature is figuring out the content of the href.
Each component can have url inside of a section so resolving the path in the sections means probably having all
component filePath => component docs urlPath map available at render time.
Since we render the side bar for all the sections, I guess we could find a way to store this structure.
Then it would be a matter of waiting for this structure to be ready to pick in the map for the url.
I will create another issue for the docgen extraction.
comment created time in 13 days
push eventvue-styleguidist/vue-styleguidist
commit sha 17472c3a26a2b43da26de6169388b35f8338195f
fix: parsing of validator with a function ref closes #954
push time in 13 days
issue closedvue-styleguidist/vue-styleguidist
Parsing of 'validator' fails when using a function reference
Current behavior
The vue-docgen-api parser fails to parse the prop validator function with TypeError: Cannot read property '0' of undefined.

Since the parsing fails, the respective component will be ignored from the guide.
To reproduce
This happens when a prop validator is defined through a variable name rather than an inline function or lambda.
- Create a function called
myValidator
function myValidator(value) {
return value.length = 3;
}
- Add a validator to a component prop using this syntax:
props: {
color: {
type: String,
validator: myValidator,
},
},
Expected behavior
The parsing of the validator function should work even if it is not written inline.
closed time in 13 days
RaffaeleCanalepush eventelevatebart/eb-typescript
commit sha 33a96ce79678b078f8d1d98ca515477fcef6e981
Bump http-proxy from 1.17.0 to 1.18.1 (#9) Bumps [http-proxy](https://github.com/http-party/node-http-proxy) from 1.17.0 to 1.18.1. - [Release notes](https://github.com/http-party/node-http-proxy/releases) - [Changelog](https://github.com/http-party/node-http-proxy/blob/master/CHANGELOG.md) - [Commits](https://github.com/http-party/node-http-proxy/compare/1.17.0...1.18.1) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
push time in 13 days
PR merged elevatebart/eb-typescript
Bumps http-proxy from 1.17.0 to 1.18.1. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/http-party/node-http-proxy/blob/master/CHANGELOG.md">http-proxy's changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/http-party/node-http-proxy/compare/1.18.0...v1.18.1">v1.18.1</a> - 2020-05-17</h2> <h3>Merged</h3> <ul> <li>Skip sending the proxyReq event when the expect header is present <a href="https://github-redirect.dependabot.com/http-party/node-http-proxy/pull/1447"><code>#1447</code></a></li> <li>Remove node6 support, add node12 to build <a href="https://github-redirect.dependabot.com/http-party/node-http-proxy/pull/1397"><code>#1397</code></a></li> </ul> <h2><a href="https://github.com/http-party/node-http-proxy/compare/1.17.0...1.18.0">1.18.0</a> - 2019-09-18</h2> <h3>Merged</h3> <ul> <li>Added in auto-changelog module set to keepachangelog format <a href="https://github-redirect.dependabot.com/http-party/node-http-proxy/pull/1373"><code>#1373</code></a></li> <li>fix 'Modify Response' readme section to avoid unnecessary array copying <a href="https://github-redirect.dependabot.com/http-party/node-http-proxy/pull/1300"><code>#1300</code></a></li> <li>Fix incorrect target name for reverse proxy example <a href="https://github-redirect.dependabot.com/http-party/node-http-proxy/pull/1135"><code>#1135</code></a></li> <li>Fix modify response middleware example <a href="https://github-redirect.dependabot.com/http-party/node-http-proxy/pull/1139"><code>#1139</code></a></li> <li>[dist] Update dependency async to v3 <a href="https://github-redirect.dependabot.com/http-party/node-http-proxy/pull/1359"><code>#1359</code></a></li> <li>Fix path to local http-proxy in examples. <a href="https://github-redirect.dependabot.com/http-party/node-http-proxy/pull/1072"><code>#1072</code></a></li> <li>fix reverse-proxy example require path <a href="https://github-redirect.dependabot.com/http-party/node-http-proxy/pull/1067"><code>#1067</code></a></li> <li>Update README.md <a href="https://github-redirect.dependabot.com/http-party/node-http-proxy/pull/970"><code>#970</code></a></li> <li>[dist] Update dependency request to ~2.88.0 [SECURITY] <a href="https://github-redirect.dependabot.com/http-party/node-http-proxy/pull/1357"><code>#1357</code></a></li> <li>[dist] Update dependency eventemitter3 to v4 <a href="https://github-redirect.dependabot.com/http-party/node-http-proxy/pull/1365"><code>#1365</code></a></li> <li>[dist] Update dependency colors to v1 <a href="https://github-redirect.dependabot.com/http-party/node-http-proxy/pull/1360"><code>#1360</code></a></li> <li>[dist] Update all non-major dependencies <a href="https://github-redirect.dependabot.com/http-party/node-http-proxy/pull/1356"><code>#1356</code></a></li> <li>[dist] Update dependency agentkeepalive to v4 <a href="https://github-redirect.dependabot.com/http-party/node-http-proxy/pull/1358"><code>#1358</code></a></li> <li>[dist] Update dependency nyc to v14 <a href="https://github-redirect.dependabot.com/http-party/node-http-proxy/pull/1367"><code>#1367</code></a></li> <li>[dist] Update dependency concat-stream to v2 <a href="https://github-redirect.dependabot.com/http-party/node-http-proxy/pull/1363"><code>#1363</code></a></li> <li>x-forwarded-host overwrite for mutli level proxies <a href="https://github-redirect.dependabot.com/http-party/node-http-proxy/pull/1267"><code>#1267</code></a></li> <li>[refactor doc] Complete rename to http-party org. <a href="https://github-redirect.dependabot.com/http-party/node-http-proxy/pull/1362"><code>#1362</code></a></li> <li>Highlight correct lines for createProxyServer <a href="https://github-redirect.dependabot.com/http-party/node-http-proxy/pull/1117"><code>#1117</code></a></li> <li>Fix docs for rewrite options - 201 also handled <a href="https://github-redirect.dependabot.com/http-party/node-http-proxy/pull/1147"><code>#1147</code></a></li> <li>Update .nyc_output <a href="https://github-redirect.dependabot.com/http-party/node-http-proxy/pull/1339"><code>#1339</code></a></li> <li>Configure Renovate <a href="https://github-redirect.dependabot.com/http-party/node-http-proxy/pull/1355"><code>#1355</code></a></li> <li>[examples] Restream body before proxying, support for Content-Type of application/x-www-form-urlencoded <a href="https://github-redirect.dependabot.com/http-party/node-http-proxy/pull/1264"><code>#1264</code></a></li> </ul> <h3>Commits</h3> <ul> <li>[dist] New test fixtures. <a href="https://github.com/http-party/node-http-proxy/commit/7e4a0e511bc30c059216860153301de2cdd1e97f"><code>7e4a0e5</code></a></li> <li>[dist] End of an era. <a href="https://github.com/http-party/node-http-proxy/commit/a9b09cce43f072db99fb5170030a05536177ccb7"><code>a9b09cc</code></a></li> <li>[dist] Version bump. 1.18.0 <a href="https://github.com/http-party/node-http-proxy/commit/9bbe486c5efcc356fb4d189ef38eee275bbde345"><code>9bbe486</code></a></li> <li>[fix] Latest versions. <a href="https://github.com/http-party/node-http-proxy/commit/59c4403e9dc15ab9b19ee2a3f4aecbfc6c3d94c4"><code>59c4403</code></a></li> <li>[fix test] Update tests. <a href="https://github.com/http-party/node-http-proxy/commit/dd1d08b6319d1def729554446a5b0176978a8dad"><code>dd1d08b</code></a></li> <li>[dist] Update dependency ws to v3 [SECURITY] <a href="https://github.com/http-party/node-http-proxy/commit/b00911c93740a00c5cfbacbb91565cb6912ed255"><code>b00911c</code></a></li> <li>[dist] .gitattributes all the things. <a href="https://github.com/http-party/node-http-proxy/commit/fc93520d741ec80be8ae31ca005f3e9c199e330e"><code>fc93520</code></a></li> <li>[dist] Regenerate package-lock.json. <a href="https://github.com/http-party/node-http-proxy/commit/16d4f8a95162b2e2e4ee6657c500f1208c044b2d"><code>16d4f8a</code></a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/http-party/node-http-proxy/commit/9b96cd725127a024dabebec6c7ea8c807272223d"><code>9b96cd7</code></a> 1.18.1</li> <li><a href="https://github.com/http-party/node-http-proxy/commit/335aeeba2f0c286dc89c402eeb76af47834c89a3"><code>335aeeb</code></a> Skip sending the proxyReq event when the expect header is present (<a href="https://github-redirect.dependabot.com/http-party/node-http-proxy/issues/1447">#1447</a>)</li> <li><a href="https://github.com/http-party/node-http-proxy/commit/dba39668ba4c9ad461316e834b2d64b77e1ca88e"><code>dba3966</code></a> Remove node6 support, add node12 to build (<a href="https://github-redirect.dependabot.com/http-party/node-http-proxy/issues/1397">#1397</a>)</li> <li><a href="https://github.com/http-party/node-http-proxy/commit/9bbe486c5efcc356fb4d189ef38eee275bbde345"><code>9bbe486</code></a> [dist] Version bump. 1.18.0</li> <li><a href="https://github.com/http-party/node-http-proxy/commit/6e4bef4d1cd96e7a284717941e0fc274acbd3712"><code>6e4bef4</code></a> Added in auto-changelog module set to keepachangelog format (<a href="https://github-redirect.dependabot.com/http-party/node-http-proxy/issues/1373">#1373</a>)</li> <li><a href="https://github.com/http-party/node-http-proxy/commit/d05624167ce75e860770c13afeacec2ce0f67add"><code>d056241</code></a> fix 'Modify Response' readme section to avoid unnecessary array copying (<a href="https://github-redirect.dependabot.com/http-party/node-http-proxy/issues/1300">#1300</a>)</li> <li><a href="https://github.com/http-party/node-http-proxy/commit/244303b994525684e1ec8dff2e8055f89b62b1ee"><code>244303b</code></a> Fix incorrect target name for reverse proxy example (<a href="https://github-redirect.dependabot.com/http-party/node-http-proxy/issues/1135">#1135</a>)</li> <li><a href="https://github.com/http-party/node-http-proxy/commit/b4028ba78bc4616e6969e0e66b0fe4634849b68b"><code>b4028ba</code></a> Fix modify response middleware example (<a href="https://github-redirect.dependabot.com/http-party/node-http-proxy/issues/1139">#1139</a>)</li> <li><a href="https://github.com/http-party/node-http-proxy/commit/77a98159d2da0f20a03e2819c79662f36069f234"><code>77a9815</code></a> [dist] Update dependency async to v3 (<a href="https://github-redirect.dependabot.com/http-party/node-http-proxy/issues/1359">#1359</a>)</li> <li><a href="https://github.com/http-party/node-http-proxy/commit/c662f9ebcd8d623db374dbc7bef231b2b0af0c3a"><code>c662f9e</code></a> Fix path to local http-proxy in examples. (<a href="https://github-redirect.dependabot.com/http-party/node-http-proxy/issues/1072">#1072</a>)</li> <li>Additional commits viewable in <a href="https://github.com/http-party/node-http-proxy/compare/1.17.0...1.18.1">compare view</a></li> </ul> </details> <br />
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
<details> <summary>Dependabot commands and options</summary> <br />
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)@dependabot use these labelswill set the current labels as the default for future PRs for this repo and language@dependabot use these reviewerswill set the current reviewers as the default for future PRs for this repo and language@dependabot use these assigneeswill set the current assignees as the default for future PRs for this repo and language@dependabot use this milestonewill set the current milestone as the default for future PRs for this repo and language
You can disable automated security fix PRs for this repo from the Security Alerts page.
</details>
pr closed time in 13 days
push eventelevatebart/vue-cli-plugin-template-loader
commit sha 7bbb699bfbff950593f66adb19ee95186139635c
chore(deps): bump websocket-extensions from 0.1.3 to 0.1.4 (#18) Bumps [websocket-extensions](https://github.com/faye/websocket-extensions-node) from 0.1.3 to 0.1.4. - [Release notes](https://github.com/faye/websocket-extensions-node/releases) - [Changelog](https://github.com/faye/websocket-extensions-node/blob/master/CHANGELOG.md) - [Commits](https://github.com/faye/websocket-extensions-node/compare/0.1.3...0.1.4) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
push time in 16 days
PR merged elevatebart/vue-cli-plugin-template-loader
Bumps websocket-extensions from 0.1.3 to 0.1.4. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/faye/websocket-extensions-node/blob/master/CHANGELOG.md">websocket-extensions's changelog</a>.</em></p> <blockquote> <h3>0.1.4 / 2020-06-02</h3> <ul> <li>Remove a ReDoS vulnerability in the header parser (CVE-2020-7662, reported by Robert McLaughlin)</li> <li>Change license from MIT to Apache 2.0</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/faye/websocket-extensions-node/commit/8efd0cd6e35faf9bb9cb08759be1e27082177d43"><code>8efd0cd</code></a> Bump version to 0.1.4</li> <li><a href="https://github.com/faye/websocket-extensions-node/commit/3dad4ad44a8c5f74d4f8f4efd3f9d6e0b5df3051"><code>3dad4ad</code></a> Remove ReDoS vulnerability in the Sec-WebSocket-Extensions header parser</li> <li><a href="https://github.com/faye/websocket-extensions-node/commit/4a76c75efb1c5d6a2f60550e9501757458d19533"><code>4a76c75</code></a> Add Node versions 13 and 14 on Travis</li> <li><a href="https://github.com/faye/websocket-extensions-node/commit/44a677a9c0631daed0b0f4a4b68c095b624183b8"><code>44a677a</code></a> Formatting change: {...} should have spaces inside the braces</li> <li><a href="https://github.com/faye/websocket-extensions-node/commit/f6c50aba0c20ff45b0f87cea33babec1217ec3f5"><code>f6c50ab</code></a> Let npm reformat package.json</li> <li><a href="https://github.com/faye/websocket-extensions-node/commit/2d211f3705d52d9efb4f01daf5a253adf828592e"><code>2d211f3</code></a> Change markdown formatting of docs.</li> <li><a href="https://github.com/faye/websocket-extensions-node/commit/0b620834cc1e1f2eace1d55ab17f71d90d88271d"><code>0b62083</code></a> Update Travis target versions.</li> <li><a href="https://github.com/faye/websocket-extensions-node/commit/729a4653073fa8dd020561113513bfa2e2119415"><code>729a465</code></a> Switch license to Apache 2.0.</li> <li>See full diff in <a href="https://github.com/faye/websocket-extensions-node/compare/0.1.3...0.1.4">compare view</a></li> </ul> </details> <br />
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
<details> <summary>Dependabot commands and options</summary> <br />
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)@dependabot use these labelswill set the current labels as the default for future PRs for this repo and language@dependabot use these reviewerswill set the current reviewers as the default for future PRs for this repo and language@dependabot use these assigneeswill set the current assignees as the default for future PRs for this repo and language@dependabot use this milestonewill set the current milestone as the default for future PRs for this repo and language
You can disable automated security fix PRs for this repo from the Security Alerts page.
</details>
pr closed time in 16 days
delete branch elevatebart/vue-cli-plugin-template-loader
delete branch : dependabot/npm_and_yarn/elliptic-6.5.3
delete time in 16 days
PR closed elevatebart/vue-cli-plugin-template-loader
⚠️ Dependabot is rebasing this PR ⚠️
If you make any changes to it yourself then they will take precedence over the rebase.
Bumps elliptic from 6.4.1 to 6.5.3. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/indutny/elliptic/commit/8647803dc3d90506aa03021737f7b061ba959ae1"><code>8647803</code></a> 6.5.3</li> <li><a href="https://github.com/indutny/elliptic/commit/856fe4d99fe7b6200556e6400b3bf585b1721bec"><code>856fe4d</code></a> signature: prevent malleability and overflows</li> <li><a href="https://github.com/indutny/elliptic/commit/60489415e545efdfd3010ae74b9726facbf08ca8"><code>6048941</code></a> 6.5.2</li> <li><a href="https://github.com/indutny/elliptic/commit/9984964457c9f8a63b91b01ea103260417eca237"><code>9984964</code></a> package: bump dependencies</li> <li><a href="https://github.com/indutny/elliptic/commit/ec735edde187a43693197f6fa3667ceade751a3a"><code>ec735ed</code></a> utils: leak less information in <code>getNAF()</code></li> <li><a href="https://github.com/indutny/elliptic/commit/71e4e8e2f5b8f0bdbfbe106c72cc9fbc746d3d60"><code>71e4e8e</code></a> 6.5.1</li> <li><a href="https://github.com/indutny/elliptic/commit/7ec66ffa255079260126d87b1762a59ea10de5ea"><code>7ec66ff</code></a> short: add infinity check before multiplying</li> <li><a href="https://github.com/indutny/elliptic/commit/ee7970b92f388e981d694be0436c4c8036b5d36c"><code>ee7970b</code></a> travis: really move on</li> <li><a href="https://github.com/indutny/elliptic/commit/637d0216b58de7edee4f3eb5641295ac323acadb"><code>637d021</code></a> travis: move on</li> <li><a href="https://github.com/indutny/elliptic/commit/5ed0babb6467cd8575a9218265473fda926d9d42"><code>5ed0bab</code></a> package: update deps</li> <li>Additional commits viewable in <a href="https://github.com/indutny/elliptic/compare/v6.4.1...v6.5.3">compare view</a></li> </ul> </details> <br />
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
<details> <summary>Dependabot commands and options</summary> <br />
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)@dependabot use these labelswill set the current labels as the default for future PRs for this repo and language@dependabot use these reviewerswill set the current reviewers as the default for future PRs for this repo and language@dependabot use these assigneeswill set the current assignees as the default for future PRs for this repo and language@dependabot use this milestonewill set the current milestone as the default for future PRs for this repo and language
You can disable automated security fix PRs for this repo from the Security Alerts page.
</details>
pr closed time in 16 days