diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e5a065..86c2955 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,7 +15,7 @@ ### Changed -- **Breaking:** drop node < 10 and upgrade dependencies ([`02e7c00`](https://github.com/vweevers/hallmark/commit/02e7c00)). Now silently exits on node < 10. Two dozen remark modules have been upgraded, many with breaking changes though most don't apply here. One thing I've noticed is that text like `module@1.0.0` will be converted to a `mailto` link. Wrap such text in backticks. +- **Breaking:** drop node < 10 and upgrade dependencies ([`02e7c00`](https://github.com/vweevers/hallmark/commit/02e7c00)). Now silently exits on node < 10. Two dozen remark modules have been upgraded, many with breaking changes though most don't apply here. One thing I've noticed is that text like `module@1.0.0` will be converted to a `mailto` link. Wrap such text in backticks. - **Breaking:** remove depth limit on table of contents ([`031a6ae`](https://github.com/vweevers/hallmark/commit/031a6ae)) - Bump `remark-changelog` ([`4868875`](https://github.com/vweevers/hallmark/commit/4868875)). Adds experimental git submodule support. @@ -37,7 +37,7 @@ ### Changed -- Skip running on node < 8 ([`e804671`](https://github.com/vweevers/hallmark/commit/e804671)) +- Skip running on node < 8 ([`e804671`](https://github.com/vweevers/hallmark/commit/e804671)) - Upgrade `standard` devDependency from `^13.0.1` to `^14.0.0` ([#35](https://github.com/vweevers/hallmark/issues/35)) - Upgrade `rimraf` devDependency from `^2.6.3` to `^3.0.0` ([#34](https://github.com/vweevers/hallmark/issues/34)) diff --git a/README.md b/README.md index 50d72e9..5344901 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,12 @@ # hallmark -> **Markdown Style Guide, with linter and automatic fixer.** :sparkles: +> **Markdown Style Guide, with linter and automatic fixer.** :sparkles:\ > Powered by [`remark`][remark]. [![npm status](http://img.shields.io/npm/v/hallmark.svg)](https://www.npmjs.org/package/hallmark) [![node](https://img.shields.io/node/v/hallmark.svg)](https://www.npmjs.org/package/hallmark) [![Test](https://img.shields.io/github/workflow/status/vweevers/hallmark/Test?label=test)](https://github.com/vweevers/hallmark/actions/workflows/test.yml) -[![JavaScript Style Guide](https://img.shields.io/badge/standard-informational?logo=javascript&logoColor=fff)](https://standardjs.com) +[![JavaScript Style Guide](https://img.shields.io/badge/standard-informational?logo=javascript\&logoColor=fff)](https://standardjs.com) [![Markdown Style Guide](https://img.shields.io/badge/hallmark-informational?logo=markdown)](https://github.com/vweevers/hallmark) [![Common Changelog](https://common-changelog.org/badge.svg)](https://common-changelog.org) @@ -21,9 +21,9 @@ - [Rules](#rules) - [Usage](#usage) - [Commands](#commands) - - [`lint`](#lint) - - [`fix`](#fix) - - [`cc add `](#cc-add-target) + - [`lint [file...]`](#lint-file) + - [`fix [file...]`](#fix-file) + - [`cc add `](#cc-add-target) - [Package Options](#package-options) - [`ignore`](#ignore) - [`autolinkReferences`](#autolinkreferences) diff --git a/package.json b/package.json index 2601e3a..c9fbbfb 100644 --- a/package.json +++ b/package.json @@ -9,8 +9,7 @@ "exports": "./index.js", "scripts": { "test": "standard && depcheck --ignores subarg && node cli.js && tape test/*.js", - "hallmark": "node cli.js --fix", - "check-licenses": "npm-consider install --test --production" + "hallmark": "node cli.js fix" }, "files": [ "CHANGELOG.md", @@ -30,7 +29,7 @@ "remark-collapse": "~0.1.2", "remark-common-changelog": "^2.0.0", "remark-gfm": "^3.0.1", - "remark-github": "^11.2.1", + "remark-github": "^11.2.2", "remark-lint": "^9.1.0", "remark-lint-blockquote-indentation": "^3.1.0", "remark-lint-checkbox-character-style": "^4.1.0", @@ -61,12 +60,11 @@ "subarg": "^1.0.0", "supports-color": "^9.0.2", "unified-engine": "^9.0.4", - "vfile-reporter-shiny": "^1.0.0" + "vfile-reporter-shiny": "^1.0.1" }, "devDependencies": { "depcheck": "^1.4.2", "git-pull-or-clone": "^2.0.1", - "npm-consider": "^1.7.0", "standard": "^16.0.4", "tape": "github:substack/tape#d487add", "tempy": "^2.0.0" @@ -93,13 +91,5 @@ ], "engines": { "node": ">=14" - }, - "config": { - "allowedLicenseTypes": [ - "publicDomain", - "permissive", - "protective", - "uncategorized" - ] } }