Update CSSComb to v4.0.1.
This commit is contained in:
parent
67a897bae0
commit
a3821639c9
|
@ -1,6 +1,9 @@
|
||||||
# Next
|
# Next
|
||||||
- ...
|
- ...
|
||||||
|
|
||||||
|
# v0.29.25 (2017-05-12)
|
||||||
|
- Fix [#1547](https://github.com/Glavin001/atom-beautify/issues/1547), [#1630](https://github.com/Glavin001/atom-beautify/issues/1630). Update CSSComb to latest version.
|
||||||
|
|
||||||
# v0.29.24 (2017-05-06)
|
# v0.29.24 (2017-05-06)
|
||||||
- Fix [#1643](https://github.com/Glavin001/atom-beautify/issues/1643). Add PHPCBF Version setting and remove "--no-patch" option from version 3.0 of PHPCBF. See [#1645](https://github.com/Glavin001/atom-beautify/pull/1645).
|
- Fix [#1643](https://github.com/Glavin001/atom-beautify/issues/1643). Add PHPCBF Version setting and remove "--no-patch" option from version 3.0 of PHPCBF. See [#1645](https://github.com/Glavin001/atom-beautify/pull/1645).
|
||||||
- Close [#27](https://github.com/Glavin001/atom-beautify/issues/27). Add commands for beautifying a specific language
|
- Close [#27](https://github.com/Glavin001/atom-beautify/issues/27). Add commands for beautifying a specific language
|
||||||
|
|
10
package.json
10
package.json
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "atom-beautify",
|
"name": "atom-beautify",
|
||||||
"main": "./src/beautify",
|
"main": "./src/beautify",
|
||||||
"version": "0.29.24",
|
"version": "0.29.25",
|
||||||
"private": true,
|
"private": true,
|
||||||
"description": "Beautify HTML, CSS, JavaScript, PHP, Python, Ruby, Java, C, C++, C#, Objective-C, CoffeeScript, TypeScript, Coldfusion, SQL, and more in Atom",
|
"description": "Beautify HTML, CSS, JavaScript, PHP, Python, Ruby, Java, C, C++, C#, Objective-C, CoffeeScript, TypeScript, Coldfusion, SQL, and more in Atom",
|
||||||
"repository": {
|
"repository": {
|
||||||
|
@ -134,6 +134,10 @@
|
||||||
{
|
{
|
||||||
"name": "Taylon Silmer",
|
"name": "Taylon Silmer",
|
||||||
"url": "https://github.com/taylon"
|
"url": "https://github.com/taylon"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "James Power",
|
||||||
|
"url": "https://github.com/thejamespower"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"engines": {
|
"engines": {
|
||||||
|
@ -148,7 +152,7 @@
|
||||||
"coffee-fmt": "^0.12.0",
|
"coffee-fmt": "^0.12.0",
|
||||||
"coffee-formatter": "^0.1.2",
|
"coffee-formatter": "^0.1.2",
|
||||||
"coffee-script": "^1.11.0",
|
"coffee-script": "^1.11.0",
|
||||||
"csscomb": "^3.1.7",
|
"csscomb": "^4.0.1",
|
||||||
"diff": "3.0.0",
|
"diff": "3.0.0",
|
||||||
"editorconfig": "^0.13.2",
|
"editorconfig": "^0.13.2",
|
||||||
"eslint": "^3.13.1",
|
"eslint": "^3.13.1",
|
||||||
|
@ -399,4 +403,4 @@
|
||||||
"lint": "coffeelint src/ spec/",
|
"lint": "coffeelint src/ spec/",
|
||||||
"code-docs": "codo && open docs/code/index.html"
|
"code-docs": "codo && open docs/code/index.html"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -9037,7 +9037,7 @@
|
||||||
"properties": {
|
"properties": {
|
||||||
"padding": {
|
"padding": {
|
||||||
"type": "integer",
|
"type": "integer",
|
||||||
"default": null,
|
"default": 0,
|
||||||
"minimum": 0,
|
"minimum": 0,
|
||||||
"description": "The amount of padding to add next to each line. (Supported by align-yaml)",
|
"description": "The amount of padding to add next to each line. (Supported by align-yaml)",
|
||||||
"title": "Padding",
|
"title": "Padding",
|
||||||
|
|
Loading…
Reference in New Issue