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.3.2 to 1.4.0-rc.1

6

CHANGELOG.md
# Changelog
## 1.4.0-rc.1
* Added placeholder support ([#154](https://github.com/SassDoc/sassdoc/issues/154))
* Prevented a crash when using invalid annotations; throwing a warning instead
* Added `@source` as an alias for `@link` to provide more semantic
## 1.3.2

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

9

package.json

@@ -20,3 +20,3 @@ {

],
"version": "1.3.2",
"version": "1.4.0-rc.1",
"license": {

@@ -45,7 +45,7 @@ "type": "MIT",

"dependencies": {
"sassdoc-theme-default": "^1.0.0",
"sassdoc-theme-default": "^1.1.0",
"q": "^1.0.1",
"rimraf": "~2.2.8",
"ncp": "^0.6.0",
"scss-comment-parser": "^0.2.4",
"scss-comment-parser": "^0.3.2",
"mkdirp": "^0.5.0",

@@ -59,2 +59,3 @@ "docopt": "^0.4.0",

"assert": "^1.1.1",
"atom-screenshot": "^0.1.2",
"grunt": "^0.4.5",

@@ -66,3 +67,5 @@ "grunt-autoprefixer": "^1.0.0",

"grunt-contrib-sass": "^0.7.3",
"grunt-contrib-uglify": "^0.5.1",
"grunt-contrib-watch": "^0.6.1",
"grunt-gh-pages": "^0.9.1",
"grunt-mocha-test": "^0.11.0",

@@ -69,0 +72,0 @@ "load-grunt-tasks": "^0.6.0",

@@ -5,3 +5,3 @@ # SassDoc

![SassDoc](http://i.imgur.com/zN7UPua.png)
![SassDoc](http://sassdoc.com/preview-image.png)
---

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

@@ -13,3 +13,4 @@ 'use strict';

};
}
},
alias : ['source']
};

@@ -6,5 +6,4 @@ 'use strict';

return text.trim();
}
},
alias : ['outputs']
};
module.exports.alias = ['outputs'];

@@ -27,5 +27,4 @@ 'use strict';

return obj;
}
},
alias : ['arg', 'arguments', 'param']
};
module.exports.alias = ['arg', 'arguments', 'param'];

@@ -27,5 +27,4 @@ 'use strict';

return obj;
}
},
alias : ['return']
};
module.exports.alias = ['return'];

@@ -6,5 +6,4 @@ 'use strict';

return text.trim();
}
},
alias : ['throw', 'exception']
};
module.exports.alias = ['throw', 'exception'];

@@ -6,5 +6,4 @@ 'use strict';

return text.trim();
}
},
alias : ['todo']
};
module.exports.alias = ['todo'];

@@ -6,4 +6,10 @@ 'use strict';

var logger = require('./log');
var parser = new ScssCommentParser(annotations);
parser.commentParser.on('warning', function(warning){
logger.warn(warning);
});
module.exports = {

@@ -10,0 +16,0 @@

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