New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

markdown-styleguide-generator

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

markdown-styleguide-generator - npm Package Compare versions

Comparing version 2.0.1 to 2.0.2

4

package.json
{
"name": "markdown-styleguide-generator",
"version": "2.0.1",
"version": "2.0.2",
"description": "Will search all your (s)css files for markdown and generate a single page html styleguide",

@@ -24,3 +24,3 @@ "main": "index.js",

"dependencies": {
"chalk": "^0.5.1",
"chalk": "^1.0.0",
"cheerio": "^0.18.0",

@@ -27,0 +27,0 @@ "fs-extra": "^0.16.3",

@@ -268,1 +268,23 @@ # markdown-styleguide-generator

```
## Run with gulp/grunt
If you want to re-create the styleguide automagicalle every time a stylesheet file is changed, you can run it with your favorite task runner. One way of running it with gulp would be using gulp-shell to execute the shell command `styleguide` when a file is changed.
Sample gulp script:
```
var gulp = require('gulp');
var shell = require('gulp-shell');
var watch = require('gulp-watch');
gulp.task('watch', function() {
gulp.watch('path/to/watch/for/changes/**/*.scss', ['makeStyleguide']);
});
gulp.task('makeStyleguide',
shell.task(
['styleguide']
)
);
gulp.task('default', ['watch']);
```
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