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

sassdoc

Package Overview
Dependencies
Maintainers
4
Versions
138
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sassdoc - npm Package Compare versions

Comparing version 1.0.0-rc.16 to 1.0.0-rc.17

6

CHANGELOG.md
# Changelog
## 1.0.0-rc.17
* Fixed an issue with item count in console ([#102](https://github.com/SassDoc/sassdoc/issues/102))
* Made parameters table headers WAI 2.0 compliant ([#101](https://github.com/SassDoc/sassdoc/pull/101))
* Fixed a logic issue in the view
## 1.0.0-rc.16

@@ -4,0 +10,0 @@

10

package.json
{
"name": "sassdoc",
"description": "Like JSDoc but for Sass files.",
"author": "Hugo Giraudel <hugo.giraudel@gmail.com> http://hugogiraudel.com",
"author": "Hugo Giraudel <hugo.giraudel@gmail.com> (http://hugogiraudel.com)",
"contributors": [
"Fabrice Weinberg <Fabrice@weinberg.me>",
"Valérian Galliat",
"Pascal Duez"
{ "name": "Fabrice Weinberg", "url": "https://twitter.com/fweinb", "email": "fabrice@weinberg.me" },
{ "name": "Valérian Galliat", "url": "https://twitter.com/valeriangalliat" },
{ "name": "Pascal Duez", "url": "https://twitter.com/pascalduez" }
],
"version": "1.0.0-rc.16",
"version": "1.0.0-rc.17",
"license": {

@@ -12,0 +12,0 @@ "type": "MIT",

@@ -217,4 +217,4 @@ 'use strict';

logger.log(response.length + ' item' + (response.length > 1 ? 's' : '') + ' documented.');
var key;
var itemCount = 0;
var result = {};

@@ -293,2 +293,9 @@ var index = {};

// Item count
for (key in result) {
itemCount += result[key].length;
}
logger.log(itemCount + ' item' + (itemCount > 1 ? 's' : '') + ' documented.');
return result;

@@ -295,0 +302,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

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

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