Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
vweevers committed Nov 14, 2021
1 parent 66edde1 commit bded79f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 20 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand All @@ -37,7 +37,7 @@

### Changed

- Skip running on node &lt; 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))

Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -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)

Expand All @@ -21,9 +21,9 @@
- [Rules](#rules)
- [Usage](#usage)
- [Commands](#commands)
- [`lint`](#lint)
- [`fix`](#fix)
- [`cc add <target>`](#cc-add-target)
- [`lint [file...]`](#lint-file)
- [`fix [file...]`](#fix-file)
- [`cc add <target...>`](#cc-add-target)
- [Package Options](#package-options)
- [`ignore`](#ignore)
- [`autolinkReferences`](#autolinkreferences)
Expand Down
16 changes: 3 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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",
Expand Down Expand Up @@ -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"
Expand All @@ -93,13 +91,5 @@
],
"engines": {
"node": ">=14"
},
"config": {
"allowedLicenseTypes": [
"publicDomain",
"permissive",
"protective",
"uncategorized"
]
}
}

0 comments on commit bded79f

Please sign in to comment.