You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

632 lines
19 KiB

4 years ago
  1. # Change Log
  2. This project adheres to [Semantic Versioning](http://semver.org/).
  3. ## 7.0.23
  4. * Update `Processor#version`.
  5. ## 7.0.22
  6. * Add funding link for `npm fund`.
  7. ## 7.0.21
  8. * Revert passing `nodes` property to node constructor.
  9. ## 7.0.20
  10. * Allow to pass PostCSS’s nodes in `nodes` property to node constructor.
  11. ## 7.0.19
  12. * Fix passing `nodes` property to node constructor.
  13. ## 7.0.18
  14. * Fix TypeScript type definitions (by Jan Buschtöns).
  15. ## 7.0.17
  16. * Fix TypeScript type definitions (by Bob Matcuk and Jan Buschtöns).
  17. ## 7.0.16
  18. * Revert Custom Properties fix until PostCSS 8.0.
  19. ## 7.0.15
  20. * Fix Custom Properties support (by Ivan Solovev).
  21. ## 7.0.14
  22. * Fix tokenizer for `postcss-less` (by Matt Lyons).
  23. ## 7.0.13
  24. * Fix parsing regression in 7.0.12 for comments between property and value.
  25. ## 7.0.12
  26. * Fix parsing broken CSS with two words in declaration property.
  27. ## 7.0.11
  28. * Fix source maps on declaration semicolon (by Niklas Mischkulnig).
  29. ## 7.0.10
  30. * Fix source maps (by Niklas Mischkulnig).
  31. ## 7.0.9
  32. * Increase stringifing performance for non-raws AST.
  33. ## 7.0.8
  34. * Fix TypeScript definitions (by Ankur Oberoi).
  35. * Use `support-colors` 6.0.
  36. ## 7.0.7
  37. * Extend `Error` in `CssSyntaxError`.
  38. ## 7.0.6
  39. * Fix parsing files with BOM (by Veniamin Krol).
  40. ## 7.0.5
  41. * Reduce npm package size (by Gilad Peleg).
  42. ## 7.0.4
  43. * Fix safe parser regression.
  44. ## 7.0.3
  45. * Fix tokenizer extendability (by Andrew Powell).
  46. * Reduce npm package size.
  47. ## 7.0.2
  48. * Fix warning text (by Rui Pedro M Lima).
  49. ## 7.0.1
  50. * Fix JSDoc (by Steven Lambert).
  51. ## 7.0 “President Amy”
  52. * Remove Node.js 9 and Node.js 4 support.
  53. * Remove IE and “dead” browsers support for client-side Babel transpiling.
  54. * Add CSS position on error happened inside `walk()` (by Nikhil Gaba).
  55. * Add `LazyResult#finally` (by Igor Kamyshev).
  56. * Add warning on calling PostCSS without plugins and syntax options.
  57. * Reduce client-side size.
  58. ## 6.0.23
  59. * Fix parsing nested at-rules without semicolon, params, and spaces.
  60. * Fix docs (by Kevin Schiffer and Pat Cavit).
  61. ## 6.0.22
  62. * Fix `Node#prev` and `Node#next` on missed parent.
  63. ## 6.0.21
  64. * Rename Chinese docs to fix `yarnpkg.com` issue.
  65. ## 6.0.20
  66. * Better error message on `null` as input CSS.
  67. ## 6.0.19
  68. * Fix TypeScript definitions for source maps (by Oleh Kuchuk).
  69. * Fix `source` field in TypeScript definitions (by Sylvain Pollet-Villard).
  70. ## 6.0.18
  71. * Use primitive object in TypeScript definitions (by Sylvain Pollet-Villard).
  72. ## 6.0.17
  73. * Fix parsing comment in selector between word tokens (by Oleh Kuchuk).
  74. ## 6.0.16
  75. * Fix warning text (by Michael Keller).
  76. ## 6.0.15
  77. * Add warning about missed `from` option on `process().then()` call.
  78. * Add IE 10 support.
  79. ## 6.0.14
  80. * Fix TypeScript definitions (by Jed Mao).
  81. ## 6.0.13
  82. * Fix TypeScript definitions for case of multiple PostCSS versions
  83. in `node_modules` (by Chris Eppstein).
  84. * Use `source-map` 0.6.
  85. ## 6.0.12
  86. * Don’t copy `*` hack to declaration indent.
  87. ## 6.0.11
  88. * Add upper case `!IMPORTANT` support.
  89. ## 6.0.10
  90. * Reduce PostCSS size in webpack bundle.
  91. ## 6.0.9
  92. * Improve error message for plugin with old PostCSS (by Igor Adamenko).
  93. ## 6.0.8
  94. * Fix Node.js 4.2.2 support.
  95. ## 6.0.7
  96. * Fix base64 decoding for old Node.js and browser.
  97. ## 6.0.6
  98. * Fix `end` position in at-rule without semicolon (by Oleh Kuchuk).
  99. ## 6.0.5
  100. * Move Babel config from `package.json` for `node_modules` compiling cases.
  101. ## 6.0.4
  102. * Fix parsing `;;` after rules.
  103. * Use Chalk 2.0.
  104. ## 6.0.3
  105. * Fix escape sequences parsing (by Oleh Kuchuk).
  106. * Added ability to force disable colors with an environment variable.
  107. * Improved color detection of some terminal apps.
  108. ## 6.0.2
  109. * Keep `raws.before` on moving `Root` children to new `Root`.
  110. ## 6.0.1
  111. * Fix parser extensibility to use it in Safe Parser.
  112. ## 6.0 “Marquis Orias”
  113. * Remove node.js 0.12 support.
  114. * Remove deprecated method from PostCSS 4.
  115. * Insert methods remove child from previous parent, instead of closing.
  116. * Insert methods and cloning doesn’t clean `raws` anymore.
  117. * Methods `moveTo`, `moveAfter`, `moveBefore` were deprecated.
  118. * Options was changed in `Plugin#process(css, processOptions, pluginOptions)`.
  119. * Add stream parser to reduce memory usage (by Oleh Kuchuk).
  120. * Add `before()`/`after()` shortcuts for `node.parent.insertBefore(node, x)`.
  121. * Add `Rule#raws.ownSemicolon` for semicolon after templates for `@apply`.
  122. * Use `babel-preset-env` to compile npm package.
  123. * Remove `js-base64` from dependencies (by Roman Dvornov).
  124. * Fix error message on single `:` in CSS.
  125. * Move tests to Jest.
  126. * Clean up test (by Gabriel Kalani).
  127. ## 5.2.18
  128. * Fix TypeScript definitions for case of multiple PostCSS versions
  129. in `node_modules` (by Chris Eppstein).
  130. ## 5.2.17
  131. * Add `postcss-sass` suggestion to syntax error on `.sass` input.
  132. ## 5.2.16
  133. * Better error on wrong argument in node constructor.
  134. ## 5.2.15
  135. * Fix TypeScript definitions (by bumbleblym).
  136. ## 5.2.14
  137. * Fix browser bundle building in webpack (by janschoenherr).
  138. ## 5.2.13
  139. * Do not add comment to important raws.
  140. * Fix JSDoc (by Dmitry Semigradsky).
  141. ## 5.2.12
  142. * Fix typo in deprecation message (by Garet McKinley).
  143. ## 5.2.11
  144. * Fix TypeScript definitions (by Jed Mao).
  145. ## 5.2.10
  146. * Fix TypeScript definitions (by Jed Mao).
  147. ## 5.2.9
  148. * Update TypeScript definitions (by Jed Mao).
  149. ## 5.2.8
  150. * Fix error message (by Ben Briggs).
  151. ## 5.2.7
  152. * Better error message on syntax object in plugins list.
  153. ## 5.2.6
  154. * Fix `postcss.vendor` for values with spaces (by 刘祺).
  155. ## 5.2.5
  156. * Better error message on unclosed string (by Ben Briggs).
  157. ## 5.2.4
  158. * Improve terminal CSS syntax highlight (by Simon Lydell).
  159. ## 5.2.3
  160. * Better color highlight in syntax error code frame.
  161. * Fix color highlight support in old systems.
  162. ## 5.2.2
  163. * Update `Processor#version`.
  164. ## 5.2.1
  165. * Fix source map path for CSS without `from` option (by Michele Locati).
  166. ## 5.2 “Duke Vapula”
  167. * Add syntax highlight to code frame in syntax error (by Andrey Popp).
  168. * Use Babel code frame style and size in syntax error.
  169. * Add `[` and `]` tokens to parse `[attr=;] {}` correctly.
  170. * Add `ignoreErrors` options to tokenizer (by Andrey Popp).
  171. * Fix error position on tab indent (by Simon Lydell).
  172. ## 5.1.2
  173. * Suggests SCSS/Less parsers on parse errors depends on file extension.
  174. ## 5.1.1
  175. * Fix TypeScript definitions (by Efremov Alexey).
  176. ## 5.1 “King and President Zagan”
  177. * Add URI in source map support (by Mark Finger).
  178. * Add `map.from` option (by Mark Finger).
  179. * Add `<no source>` mappings for nodes without source (by Bogdan Chadkin).
  180. * Add function value support to `map.prev` option (by Chris Montoro).
  181. * Add declaration value type check in shortcut creating (by 刘祺).
  182. * `Result#warn` now returns new created warning.
  183. * Don’t call plugin creator in `postcss.plugin` call.
  184. * Add source maps to PostCSS ES5 build.
  185. * Add JSDoc to PostCSS classes.
  186. * Clean npm package from unnecessary docs.
  187. ## 5.0.21
  188. * Fix support with input source mao with `utf8` encoding name.
  189. ## 5.0.20
  190. * Fix between raw value parsing (by David Clark).
  191. * Update TypeScript definitions (by Jed Mao).
  192. * Clean fake node.source after `append(string)`.
  193. ## 5.0.19
  194. * Fix indent-based syntaxes support.
  195. ## 5.0.18
  196. * Parse new lines according W3C CSS syntax specification.
  197. ## 5.0.17
  198. * Fix options argument in `Node#warn` (by Ben Briggs).
  199. * Fix TypeScript definitions (by Jed Mao).
  200. ## 5.0.16
  201. * Fix CSS syntax error position on unclosed quotes.
  202. ## 5.0.15
  203. * Fix `Node#clone()` on `null` value somewhere in node.
  204. ## 5.0.14
  205. * Allow to use PostCSS in webpack bundle without JSON loader.
  206. ## 5.0.13
  207. * Fix `index` and `word` options in `Warning#toString` (by Bogdan Chadkin).
  208. * Fix input source content loading in errors.
  209. * Fix map options on using `LazyResult` as input CSS.
  210. * 100% test coverage.
  211. * Use Babel 6.
  212. ## 5.0.12
  213. * Allow passing a previous map with no mappings (by Andreas Lind).
  214. ## 5.0.11
  215. * Increase plugins performance by 1.5 times.
  216. ## 5.0.10
  217. * Fix warning from nodes without source.
  218. ## 5.0.9
  219. * Fix source map type detection (by @asan).
  220. ## 5.0.8
  221. * Fixed a missed step in `5.0.7` that caused the module to be published as
  222. ES6 code.
  223. ## 5.0.7
  224. * PostCSS now requires that node 0.12 is installed via the engines property
  225. in package.json (by Howard Zuo).
  226. ## 5.0.6
  227. * Fix parsing nested at-rule without semicolon (by Matt Drake).
  228. * Trim `Declaration#value` (by Bogdan Chadkin).
  229. ## 5.0.5
  230. * Fix multi-tokens property parsing (by Matt Drake).
  231. ## 5.0.4
  232. * Fix start position in `Root#source`.
  233. * Fix source map annotation, when CSS uses `\r\n` (by Mohammad Younes).
  234. ## 5.0.3
  235. * Fix `url()` parsing.
  236. * Fix using `selectors` in `Rule` constructor.
  237. * Add start source to `Root` node.
  238. ## 5.0.2
  239. * Fix `remove(index)` to be compatible with 4.x plugin.
  240. ## 5.0.1
  241. * Fix PostCSS 4.x plugins compatibility.
  242. * Fix type definition loading (by Jed Mao).
  243. ## 5.0 “President Valac”
  244. * Remove `safe` option. Move Safe Parser to separate project.
  245. * `Node#toString` does not include `before` for root nodes.
  246. * Remove plugin returning `Root` API.
  247. * Remove Promise polyfill for node.js 0.10.
  248. * Deprecate `eachInside`, `eachDecl`, `eachRule`, `eachAtRule` and `eachComment`
  249. in favor of `walk`, `walkDecls`, `walkRules`, `walkAtRules` and `walkComments`
  250. (by Jed Mao).
  251. * Deprecate `Container#remove` and `Node#removeSelf`
  252. in favor of `Container#removeChild` and `Node#remove` (by Ben Briggs).
  253. * Deprecate `Node#replace` in favor of `replaceWith` (by Ben Briggs).
  254. * Deprecate raw properties in favor of `Node#raws` object.
  255. * Deprecate `Node#style` in favor of `raw`.
  256. * Deprecate `CssSyntaxError#generated` in favor of `input`.
  257. * Deprecate `Node#cleanStyles` in favor of `cleanRaws`.
  258. * Deprecate `Root#prevMap` in favor of `Root.source.input.map`.
  259. * Add `syntax`, `parser` and `stringifier` options for Custom Syntaxes.
  260. * Add stringifier option to `Node#toString`.
  261. * Add `Result#content` alias for non-CSS syntaxes.
  262. * Add `plugin.process(css)` shortcut to every plugin function (by Ben Briggs).
  263. * Add multiple nodes support to insert methods (by Jonathan Neal).
  264. * Add `Node#warn` shortcut (by Ben Briggs).
  265. * Add `word` and `index` options to errors and warnings (by David Clark).
  266. * Add `line`, `column` properties to `Warning`.
  267. * Use `supports-color` library to detect color support in error output.
  268. * Add type definitions for TypeScript plugin developers (by Jed Mao).
  269. * `Rule#selectors` setter detects separators.
  270. * Add `postcss.stringify` method.
  271. * Throw descriptive errors for incorrectly formatted plugins.
  272. * Add docs to npm release.
  273. * Fix `url()` parsing.
  274. * Fix Windows support (by Jed Mao).
  275. ## 4.1.16
  276. * Fix errors without stack trace.
  277. ## 4.1.15
  278. * Allow asynchronous plugins to change processor plugins list (by Ben Briggs).
  279. ## 4.1.14
  280. * Fix for plugins packs defined by `postcss.plugin`.
  281. ## 4.1.13
  282. * Fix input inlined source maps with UTF-8 encoding.
  283. ## 4.1.12
  284. * Update Promise polyfill.
  285. ## 4.1.11
  286. * Fix error message on wrong plugin format.
  287. ## 4.1.10
  288. * Fix Promise behavior on sync plugin errors.
  289. * Automatically fill `plugin` field in `CssSyntaxError`.
  290. * Fix warning message (by Ben Briggs).
  291. ## 4.1.9
  292. * Speed up `node.clone()`.
  293. ## 4.1.8
  294. * Accepts `Processor` instance in `postcss()` constructor too.
  295. ## 4.1.7
  296. * Speed up `postcss.list` (by Bogdan Chadkin).
  297. ## 4.1.6
  298. * Fix Promise behavior on parsing error.
  299. ## 4.1.5
  300. * Parse at-words in declaration values.
  301. ## 4.1.4
  302. * Fix Promise polyfill dependency (by Anton Yakushev and Matija Marohnić).
  303. ## 4.1.3
  304. * Add Promise polyfill for node.js 0.10 and IE.
  305. ## 4.1.2
  306. * List helpers can be accessed independently `var space = postcss.list.space`.
  307. ## 4.1.1
  308. * Show deprecated message only once.
  309. ## 4.1 “Marquis Andras”
  310. * Asynchronous plugin support.
  311. * Add warnings from plugins and `Result#messages`.
  312. * Add `postcss.plugin()` to create plugins with a standard API.
  313. * Insert nodes by CSS string.
  314. * Show version warning message on error from an outdated plugin.
  315. * Send `Result` instance to plugins as the second argument.
  316. * Add `CssSyntaxError#plugin`.
  317. * Add `CssSyntaxError#showSourceCode()`.
  318. * Add `postcss.list` and `postcss.vendor` aliases.
  319. * Add `Processor#version`.
  320. * Parse wrong closing bracket.
  321. * Parse `!important` statement with spaces and comments inside (by Ben Briggs).
  322. * Throw an error on declaration without `prop` or `value` (by Philip Peterson).
  323. * Fix source map mappings position.
  324. * Add indexed source map support.
  325. * Always set `error.generated`.
  326. * Clean all source map annotation comments.
  327. ## 4.0.6
  328. * Remove `babel` from released package dependencies (by Andres Suarez).
  329. ## 4.0.5
  330. * Fix error message on double colon in declaration.
  331. ## 4.0.4
  332. * Fix indent detection in some rare cases.
  333. ## 4.0.3
  334. * Faster API with 6to5 Loose mode.
  335. * Fix indexed source maps support.
  336. ## 4.0.2
  337. * Do not copy IE hacks to code style.
  338. ## 4.0.1
  339. * Add `source.input` to `Root` too.
  340. ## 4.0 “Duke Flauros”
  341. * Rename `Container#childs` to `nodes`.
  342. * Rename `PostCSS#processors` to `plugins`.
  343. * Add `Node#replaceValues()` method.
  344. * Add `Node#moveTo()`, `moveBefore()` and `moveAfter()` methods.
  345. * Add `Node#cloneBefore()` and `cloneAfter()` shortcuts.
  346. * Add `Node#next()`, `prev()` and `root()` shortcuts.
  347. * Add `Node#replaceWith()` method.
  348. * Add `Node#error()` method.
  349. * Add `Container#removeAll()` method.
  350. * Add filter argument to `eachDecl()` and `eachAtRule()`.
  351. * Add `Node#source.input` and move `source.file` or `source.id` to `input`.
  352. * Change code indent, when node was moved.
  353. * Better fix code style on `Rule`, `AtRule` and `Comment` nodes changes.
  354. * Allow to create rules and at-rules by hash shortcut in append methods.
  355. * Add class name to CSS syntax error output.
  356. ## 3.0.7
  357. * Fix IE filter parsing with multiple commands.
  358. * Safer way to consume PostCSS object as plugin (by Maxime Thirouin).
  359. ## 3.0.6
  360. * Fix missing semicolon when comment comes after last declaration.
  361. * Fix Safe Mode declaration parsing on unclosed blocks.
  362. ## 3.0.5
  363. * Fix parser to support difficult cases with backslash escape and brackets.
  364. * Add `CssSyntaxError#stack` (by Maxime Thirouin).
  365. ## 3.0.4
  366. * Fix Safe Mode on unknown word before declaration.
  367. ## 3.0.3
  368. * Increase tokenizer speed (by Roman Dvornov).
  369. ## 3.0.2
  370. * Fix empty comment parsing.
  371. * Fix `Root#normalize` in some inserts.
  372. ## 3.0.1
  373. * Fix Rhino JS runtime support.
  374. * Typo in deprecated warning (by Maxime Thirouin).
  375. ## 3.0 “Marquis Andrealphus”
  376. * New parser, which become the fastest ever CSS parser written in JavaScript.
  377. * Parser can now parse declarations and rules in one parent (like in `@page`)
  378. and nested declarations for plugins like `postcss-nested`.
  379. * Child nodes array is now in `childs` property, instead of `decls` and `rules`.
  380. * `map.inline` and `map.sourcesContent` options are now `true` by default.
  381. * Fix iterators (`each`, `insertAfter`) on children array changes.
  382. * Use previous source map to show origin source of CSS syntax error.
  383. * Use 6to5 ES6 compiler, instead of ES6 Transpiler.
  384. * Use code style for manually added rules from existing rules.
  385. * Use `from` option from previous source map `file` field.
  386. * Set `to` value to `from` if `to` option is missing.
  387. * Use better node source name when missing `from` option.
  388. * Show a syntax error when `;` is missed between declarations.
  389. * Allow to pass `PostCSS` instance or list of plugins to `use()` method.
  390. * Allow to pass `Result` instance to `process()` method.
  391. * Trim Unicode BOM on source maps parsing.
  392. * Parse at-rules without spaces like `@import"file"`.
  393. * Better previous `sourceMappingURL` annotation comment cleaning.
  394. * Do not remove previous `sourceMappingURL` comment on `map.annotation: false`.
  395. * Parse nameless at-rules in Safe Mode.
  396. * Fix source map generation for nodes without source.
  397. * Fix next child `before` if `Root` first child got removed.
  398. ## 2.2.6
  399. * Fix map generation for nodes without source (by Josiah Savary).
  400. ## 2.2.5
  401. * Fix source map with BOM marker support (by Mohammad Younes).
  402. * Fix source map paths (by Mohammad Younes).
  403. ## 2.2.4
  404. * Fix `prepend()` on empty `Root`.
  405. ## 2.2.3
  406. * Allow to use object shortcut in `use()` with functions like `autoprefixer`.
  407. ## 2.2.2
  408. * Add shortcut to set processors in `use()` via object with `.postcss` property.
  409. ## 2.2.1
  410. * Send `opts` from `Processor#process(css, opts)` to processors.
  411. ## 2.2 “Marquis Cimeies”
  412. * Use GNU style syntax error messages.
  413. * Add `Node#replace` method.
  414. * Add `CssSyntaxError#reason` property.
  415. ## 2.1.2
  416. * Fix UTF-8 support in inline source map.
  417. * Fix source map `sourcesContent` if there is no `from` and `to` options.
  418. ## 2.1.1
  419. * Allow to miss `to` and `from` options for inline source maps.
  420. * Add `Node#source.id` if file name is unknown.
  421. * Better detect splitter between rules in CSS concatenation tools.
  422. * Automatically clone node in insert methods.
  423. ## 2.1 “King Amdusias”
  424. * Change Traceur ES6 compiler to ES6 Transpiler.
  425. * Show broken CSS line in syntax error.
  426. ## 2.0 “King Belial”
  427. * Project was rewritten from CoffeeScript to ES6.
  428. * Add Safe Mode to works with live input or with hacks from legacy code.
  429. * More safer parser to pass all hacks from Browserhacks.com.
  430. * Use real properties instead of magic getter/setter for raw properties.
  431. ## 1.0 “Marquis Decarabia”
  432. * Save previous source map for each node to support CSS concatenation
  433. with multiple previous maps.
  434. * Add `map.sourcesContent` option to add origin content to `sourcesContent`
  435. inside map.
  436. * Allow to set different place of output map in annotation comment.
  437. * Allow to use arrays and `Root` in `Container#append` and same methods.
  438. * Add `Root#prevMap` with information about previous map.
  439. * Allow to use latest PostCSS from GitHub by npm.
  440. * `Result` now is lazy and it will generate output CSS only if you use `css`
  441. or `map` property.
  442. * Use separated `map.prev` option to set previous map.
  443. * Rename `inlineMap` option to `map.inline`.
  444. * Rename `mapAnnotation` option to `map.annotation`.
  445. * `Result#map` now return `SourceMapGenerator` object, instead of string.
  446. * Run previous map autodetect only if input CSS contains annotation comment.
  447. * Add `map: 'inline'` shortcut for `map: { inline: true }` option.
  448. * `Node#source.file` now will contains absolute path.
  449. * Clean `Declaration#between` style on node clone.
  450. ## 0.3.5
  451. * Allow to use `Root` or `Result` as first argument in `process()`.
  452. * Save parsed AST to `Result#root`.
  453. ## 0.3.4
  454. * Better space symbol detect to read UTF-8 BOM correctly.
  455. ## 0.3.3
  456. * Remove source map hacks by using new Mozilla’s `source-map` (by Simon Lydell).
  457. ## 0.3.2
  458. * Add URI encoding support for inline source maps.
  459. ## 0.3.1
  460. * Fix relative paths from previous source map.
  461. * Safer space split in `Rule#selectors` (by Simon Lydell).
  462. ## 0.3 “Prince Seere”
  463. * Add `Comment` node for comments between declarations or rules.
  464. * Add source map annotation comment to output CSS.
  465. * Allow to inline source map to annotation comment by data:uri.
  466. * Fix source maps on Windows.
  467. * Fix source maps for subdirectory (by Dmitry Nikitenko and Simon Lydell).
  468. * Autodetect previous source map.
  469. * Add `first` and `last` shortcuts to container nodes.
  470. * Parse `!important` to separated property in `Declaration`.
  471. * Allow to break iteration by returning `false`.
  472. * Copy code style to new nodes.
  473. * Add `eachInside` method to recursively iterate all nodes.
  474. * Add `selectors` shortcut to get selectors array.
  475. * Add `toResult` method to `Rule` to simplify work with several input files.
  476. * Clean declaration’s `value`, rule’s `selector` and at-rule’s `params`
  477. by storing spaces in `between` property.
  478. ## 0.2 “Duke Dantalion”
  479. * Add source map support.
  480. * Add shortcuts to create nodes.
  481. * Method `process()` now returns object with `css` and `map` keys.
  482. * Origin CSS file option was renamed from `file` to `from`.
  483. * Rename `Node#remove()` method to `removeSelf()` to fix name conflict.
  484. * Node source was moved to `source` property with origin file
  485. and node end position.
  486. * You can set own CSS generate function.
  487. ## 0.1 “Count Andromalius”
  488. * Initial release.