Skip to content

Releases: Regaddi/jsontosass

v0.2.2

09 Feb 13:54
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.2.1...v0.2.2

v0.2.1

27 May 12:09
Compare
Choose a tag to compare
  • updated dependencies

v0.2.0

07 Jun 12:45
Compare
Choose a tag to compare
  • updated dependencies
  • improved paramCase conversion (Thanks to @dword-design)
  • dropped support for Node.js <6
  • updated docs

v0.1.1

20 Apr 15:56
Compare
Choose a tag to compare
  • Switched to semistandard
  • use of repeat-string
  • use of extend
  • renamed convertFile() to convertFileSync()
  • re-added convertFile() as asynchronous conversion method
  • reset to defaultOptions for every call of convert(), convertFile() and convertFileSync()

v0.1.0

20 Apr 15:54
Compare
Choose a tag to compare

Implemented Sass syntax support.

v0.0.2

14 Apr 07:03
Compare
Choose a tag to compare

Fixed #2

v0.0.1

14 Apr 06:48
Compare
Choose a tag to compare

Initial release.

What is implemented so far:

  • JSON string conversion with convert()
  • JSON file conversion with convertFile()
  • pretty-printing with prettify (configurable indent, spaceAfterColon and spaceBeforeColon)
  • useMaps to switch between Sass maps and dashed variables.
$var: (
  inner: value
);

vs.

$var-inner: value;