remark-prism
Advanced tools
Comparing version 1.1.10 to 1.1.11
@@ -0,1 +1,10 @@ | ||
## [1.1.11](https://github.com/sergioramos/remark-prism/compare/v1.1.10...v1.1.11) (2020-09-14) | ||
### Chores | ||
- **deps-dev:** bump puppeteer from 5.2.1 to 5.3.0 ([ad523f1](https://github.com/sergioramos/remark-prism/commit/ad523f14baf9b055214a7fb894ea96fa24bf468a)) | ||
- prettier and eslintrc on pkg.json ([e4ba684](https://github.com/sergioramos/remark-prism/commit/e4ba68462a36f1de53af3bf7adb0007a197e2c59)) | ||
- **deps-dev:** bump eslint from 7.8.1 to 7.9.0 ([908b280](https://github.com/sergioramos/remark-prism/commit/908b280335c7f53e4eeb1f931612d764a00dc9ed)) | ||
- **deps-dev:** bump lint-staged from 10.2.13 to 10.3.0 ([0f339a6](https://github.com/sergioramos/remark-prism/commit/0f339a60368be0778370811f571236f46afa7881)) | ||
## [1.1.10](https://github.com/sergioramos/remark-prism/compare/v1.1.9...v1.1.10) (2020-09-08) | ||
@@ -2,0 +11,0 @@ |
{ | ||
"name": "remark-prism", | ||
"version": "1.1.10", | ||
"version": "1.1.11", | ||
"description": "Syntax highlighter for markdown code blocks - with support for plugins", | ||
@@ -21,3 +21,3 @@ "license": "BSD-3-Clause", | ||
"eslint": "eslint . --ext .js", | ||
"fmt": "prettier --config .prettierrc --write '**/*'", | ||
"fmt": "prettier --config package.json --write '**/*'", | ||
"test": "NODE_ENV=test c8 -r lcovonly -r text ava --serial" | ||
@@ -40,11 +40,11 @@ }, | ||
"c8": "^7.3.0", | ||
"eslint": "^7.8.1", | ||
"eslint": "^7.9.0", | ||
"eslint-config-prettier": "^6.11.0", | ||
"eslint-config-xo-space": "^0.25.0", | ||
"husky": "^4.3.0", | ||
"lint-staged": "^10.2.13", | ||
"lint-staged": "^10.3.0", | ||
"mz": "^2.7.0", | ||
"npm-run-all": "^4.1.5", | ||
"prettier": "^2.1.1", | ||
"puppeteer": "^5.2.1", | ||
"puppeteer": "^5.3.0", | ||
"remark": "^12.0.1", | ||
@@ -61,10 +61,32 @@ "remark-html": "^12.0.0" | ||
"eslint --fix", | ||
"prettier --config .prettierrc --write", | ||
"prettier --config package.json --write", | ||
"git add" | ||
], | ||
"*.*": [ | ||
"prettier --config .prettierrc --write", | ||
"prettier --config package.json --write", | ||
"git add" | ||
] | ||
}, | ||
"prettier": { | ||
"bracketSpacing": true, | ||
"jsxBracketSameLine": false, | ||
"printWidth": 80, | ||
"semi": true, | ||
"singleQuote": true, | ||
"tabWidth": 2, | ||
"trailingComma": "all", | ||
"useTabs": false | ||
}, | ||
"eslintConfig": { | ||
"extends": [ | ||
"eslint:recommended", | ||
"xo-space/esnext", | ||
"prettier" | ||
], | ||
"rules": { | ||
"new-cap": 0, | ||
"camelcase": 0, | ||
"capitalized-comments": 0 | ||
} | ||
} | ||
} |
5727172
57