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

sassdoc

Package Overview
Dependencies
Maintainers
1
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

to
1.0.0-rc.2

5

CHANGELOG.md
# Changelog
## 1.0.0 Beta
## 1.0.0rc.1

@@ -9,2 +9,5 @@ * Moved to a real parser ([CDocParser](https://github.com/FWeinb/CDocParser) and [ScssCommentParser](https://github.com/FWeinb/ScssCommentParser))

* Variables are now documented exactly like functions and mixins, yet they have a `@datatype` directive to specify their type
* Changed the structure of `view.json`
* Fixed `@deprecated` not supporting a message
* Added a trim to `@datatype`

@@ -11,0 +14,0 @@ ## 0.4.1

2

package.json

@@ -6,3 +6,3 @@ {

"contributors": ["Fabrice Weinberg", "Valérian Galliat"],
"version": "1.0.0rc.1",
"version": "1.0.0rc.2",
"license": "MIT",

@@ -9,0 +9,0 @@ "repository": {

'use strict';
module.exports = function (text) {
return text;
return text.trim();
};
'use strict';
module.exports = function () {
return true;
module.exports = function (text) {
return text.trim();
};