Skip to content

Commit

Permalink
chore: cleanup presets package.json and readme.md files (#1219)
Browse files Browse the repository at this point in the history
  • Loading branch information
dangreen committed Mar 17, 2024
1 parent 0ddc8cd commit 90abd8a
Show file tree
Hide file tree
Showing 95 changed files with 181 additions and 138 deletions.
8 changes: 8 additions & 0 deletions packages/conventional-changelog-angular/README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
# conventional-changelog-angular

[![ESM-only package][package]][package-url]
[![NPM version][npm]][npm-url]
[![Node version][node]][node-url]
[![Dependencies status][deps]][deps-url]
[![Install size][size]][size-url]
[![Build status][build]][build-url]
[![Coverage status][coverage]][coverage-url]

[package]: https://img.shields.io/badge/package-ESM--only-ffe536.svg
[package-url]: https://nodejs.org/api/esm.html

[npm]: https://img.shields.io/npm/v/conventional-changelog-angular.svg
[npm-url]: https://npmjs.com/package/conventional-changelog-angular

Expand All @@ -15,6 +20,9 @@
[deps]: https://img.shields.io/librariesio/release/npm/conventional-changelog-angular
[deps-url]: https://libraries.io/npm/conventional-changelog-angular/tree

[size]: https://packagephobia.com/badge?p=conventional-changelog-angular
[size-url]: https://packagephobia.com/result?p=conventional-changelog-angular

[build]: https://img.shields.io/github/actions/workflow/status/conventional-changelog/conventional-changelog/ci.yaml?branch=master
[build-url]: https://github.com/conventional-changelog/conventional-changelog/actions

Expand Down
27 changes: 12 additions & 15 deletions packages/conventional-changelog-angular/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,32 +3,29 @@
"type": "module",
"version": "7.0.0",
"description": "conventional-changelog angular preset",
"exports": "./index.js",
"author": "Steve Mao",
"license": "ISC",
"homepage": "https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-angular#readme",
"repository": {
"type": "git",
"url": "https://github.com/conventional-changelog/conventional-changelog.git"
"url": "https://github.com/conventional-changelog/conventional-changelog.git",
"directory": "packages/conventional-changelog-angular"
},
"bugs": {
"url": "https://github.com/conventional-changelog/conventional-changelog/issues"
},
"keywords": [
"conventional-changelog",
"angular",
"preset"
],
"files": [
"whatBump.js",
"index.js",
"parser.js",
"writer.js",
"templates"
],
"author": "Steve Mao",
"engines": {
"node": ">=16"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/conventional-changelog/conventional-changelog/issues"
},
"homepage": "https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-angular#readme",
"exports": "./src/index.js",
"files": [
"src"
],
"dependencies": {
"compare-func": "^2.0.0"
}
Expand Down
2 changes: 1 addition & 1 deletion packages/conventional-changelog-angular/test/index.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { afterAll, describe, it, expect } from 'vitest'
import BetterThanBefore from 'better-than-before'
import conventionalChangelogCore from 'conventional-changelog-core'
import { TestTools } from '../../../tools/index.ts'
import preset from '../index.js'
import preset from '../src/index.js'

const { setups, preparing, tearsWithJoy } = BetterThanBefore()
let testTools
Expand Down
8 changes: 8 additions & 0 deletions packages/conventional-changelog-atom/README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
# conventional-changelog-atom

[![ESM-only package][package]][package-url]
[![NPM version][npm]][npm-url]
[![Node version][node]][node-url]
[![Dependencies status][deps]][deps-url]
[![Install size][size]][size-url]
[![Build status][build]][build-url]
[![Coverage status][coverage]][coverage-url]

[package]: https://img.shields.io/badge/package-ESM--only-ffe536.svg
[package-url]: https://nodejs.org/api/esm.html

[npm]: https://img.shields.io/npm/v/conventional-changelog-atom.svg
[npm-url]: https://npmjs.com/package/conventional-changelog-atom

Expand All @@ -15,6 +20,9 @@
[deps]: https://img.shields.io/librariesio/release/npm/conventional-changelog-atom
[deps-url]: https://libraries.io/npm/conventional-changelog-atom/tree

[size]: https://packagephobia.com/badge?p=conventional-changelog-atom
[size-url]: https://packagephobia.com/result?p=conventional-changelog-atom

[build]: https://img.shields.io/github/actions/workflow/status/conventional-changelog/conventional-changelog/ci.yaml?branch=master
[build-url]: https://github.com/conventional-changelog/conventional-changelog/actions

Expand Down
25 changes: 11 additions & 14 deletions packages/conventional-changelog-atom/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,30 +3,27 @@
"type": "module",
"version": "4.0.0",
"description": "conventional-changelog atom preset",
"exports": "./index.js",
"author": "Steve Mao",
"license": "ISC",
"homepage": "https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-atom#readme",
"repository": {
"type": "git",
"url": "https://github.com/conventional-changelog/conventional-changelog.git"
"url": "https://github.com/conventional-changelog/conventional-changelog.git",
"directory": "packages/conventional-changelog-atom"
},
"bugs": {
"url": "https://github.com/conventional-changelog/conventional-changelog/issues"
},
"keywords": [
"conventional-changelog",
"atom",
"preset"
],
"author": "Steve Mao",
"engines": {
"node": ">=16"
},
"license": "ISC",
"exports": "./src/index.js",
"files": [
"whatBump.js",
"index.js",
"parser.js",
"writer.js",
"templates"
],
"bugs": {
"url": "https://github.com/conventional-changelog/conventional-changelog/issues"
},
"homepage": "https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-atom#readme"
"src"
]
}
2 changes: 1 addition & 1 deletion packages/conventional-changelog-atom/test/index.spec.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { describe, beforeAll, afterAll, it, expect } from 'vitest'
import conventionalChangelogCore from 'conventional-changelog-core'
import { TestTools } from '../../../tools/index.ts'
import preset from '../index.js'
import preset from '../src/index.js'

let testTools

Expand Down
8 changes: 8 additions & 0 deletions packages/conventional-changelog-codemirror/README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
# conventional-changelog-codemirror

[![ESM-only package][package]][package-url]
[![NPM version][npm]][npm-url]
[![Node version][node]][node-url]
[![Dependencies status][deps]][deps-url]
[![Install size][size]][size-url]
[![Build status][build]][build-url]
[![Coverage status][coverage]][coverage-url]

[package]: https://img.shields.io/badge/package-ESM--only-ffe536.svg
[package-url]: https://nodejs.org/api/esm.html

[npm]: https://img.shields.io/npm/v/conventional-changelog-codemirror.svg
[npm-url]: https://npmjs.com/package/conventional-changelog-codemirror

Expand All @@ -15,6 +20,9 @@
[deps]: https://img.shields.io/librariesio/release/npm/conventional-changelog-codemirror
[deps-url]: https://libraries.io/npm/conventional-changelog-codemirror/tree

[size]: https://packagephobia.com/badge?p=conventional-changelog-codemirror
[size-url]: https://packagephobia.com/result?p=conventional-changelog-codemirror

[build]: https://img.shields.io/github/actions/workflow/status/conventional-changelog/conventional-changelog/ci.yaml?branch=master
[build-url]: https://github.com/conventional-changelog/conventional-changelog/actions

Expand Down
25 changes: 11 additions & 14 deletions packages/conventional-changelog-codemirror/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,30 +3,27 @@
"type": "module",
"version": "4.0.0",
"description": "conventional-changelog CodeMirror preset",
"exports": "./index.js",
"author": "Steve Mao",
"license": "ISC",
"homepage": "https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-codemirror#readme",
"repository": {
"type": "git",
"url": "https://github.com/conventional-changelog/conventional-changelog.git"
"url": "https://github.com/conventional-changelog/conventional-changelog.git",
"directory": "packages/conventional-changelog-codemirror"
},
"bugs": {
"url": "https://github.com/conventional-changelog/conventional-changelog/issues"
},
"keywords": [
"conventional-changelog",
"codemirror",
"preset"
],
"author": "Steve Mao",
"engines": {
"node": ">=16"
},
"license": "ISC",
"exports": "./src/index.js",
"files": [
"whatBump.js",
"index.js",
"parser.js",
"writer.js",
"templates"
],
"bugs": {
"url": "https://github.com/conventional-changelog/conventional-changelog/issues"
},
"homepage": "https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-codemirror#readme"
"src"
]
}
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { describe, beforeAll, afterAll, it, expect } from 'vitest'
import conventionalChangelogCore from 'conventional-changelog-core'
import { TestTools } from '../../../tools/index.ts'
import preset from '../index.js'
import preset from '../src/index.js'

let testTools

Expand Down
8 changes: 8 additions & 0 deletions packages/conventional-changelog-conventionalcommits/README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
# conventional-changelog-conventionalcommits

[![ESM-only package][package]][package-url]
[![NPM version][npm]][npm-url]
[![Node version][node]][node-url]
[![Dependencies status][deps]][deps-url]
[![Install size][size]][size-url]
[![Build status][build]][build-url]
[![Coverage status][coverage]][coverage-url]

[package]: https://img.shields.io/badge/package-ESM--only-ffe536.svg
[package-url]: https://nodejs.org/api/esm.html

[npm]: https://img.shields.io/npm/v/conventional-changelog-conventionalcommits.svg
[npm-url]: https://npmjs.com/package/conventional-changelog-conventionalcommits

Expand All @@ -15,6 +20,9 @@
[deps]: https://img.shields.io/librariesio/release/npm/conventional-changelog-conventionalcommits
[deps-url]: https://libraries.io/npm/conventional-changelog-conventionalcommits/tree

[size]: https://packagephobia.com/badge?p=conventional-changelog-conventionalcommits
[size-url]: https://packagephobia.com/result?p=conventional-changelog-conventionalcommits

[build]: https://img.shields.io/github/actions/workflow/status/conventional-changelog/conventional-changelog/ci.yaml?branch=master
[build-url]: https://github.com/conventional-changelog/conventional-changelog/actions

Expand Down
29 changes: 12 additions & 17 deletions packages/conventional-changelog-conventionalcommits/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,34 +3,29 @@
"type": "module",
"version": "7.0.2",
"description": "conventional-changelog conventionalcommits.org preset",
"exports": "./index.js",
"author": "Ben Coe",
"license": "ISC",
"homepage": "https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-conventionalcommits#readme",
"repository": {
"type": "git",
"url": "https://github.com/conventional-changelog/conventional-changelog.git"
"url": "https://github.com/conventional-changelog/conventional-changelog.git",
"directory": "packages/conventional-changelog-conventionalcommits"
},
"bugs": {
"url": "https://github.com/conventional-changelog/conventional-changelog/issues"
},
"keywords": [
"conventional-changelog",
"conventionalcommits.org",
"preset"
],
"files": [
"utils.js",
"whatBump.js",
"index.js",
"parser.js",
"writer.js",
"templates",
"constants.js"
],
"author": "Ben Coe",
"engines": {
"node": ">=16"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/conventional-changelog/conventional-changelog/issues"
},
"homepage": "https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-conventionalcommits#readme",
"exports": "./src/index.js",
"files": [
"src"
],
"dependencies": {
"compare-func": "^2.0.0"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { afterAll, describe, it, expect } from 'vitest'
import BetterThanBefore from 'better-than-before'
import conventionalChangelogCore from 'conventional-changelog-core'
import { TestTools } from '../../../tools/index.ts'
import preset, { DEFAULT_COMMIT_TYPES } from '../index.js'
import preset, { DEFAULT_COMMIT_TYPES } from '../src/index.js'

const { setups, preparing, tearsWithJoy } = BetterThanBefore()
let testTools
Expand Down
8 changes: 8 additions & 0 deletions packages/conventional-changelog-ember/README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
# conventional-changelog-ember

[![ESM-only package][package]][package-url]
[![NPM version][npm]][npm-url]
[![Node version][node]][node-url]
[![Dependencies status][deps]][deps-url]
[![Install size][size]][size-url]
[![Build status][build]][build-url]
[![Coverage status][coverage]][coverage-url]

[package]: https://img.shields.io/badge/package-ESM--only-ffe536.svg
[package-url]: https://nodejs.org/api/esm.html

[npm]: https://img.shields.io/npm/v/conventional-changelog-ember.svg
[npm-url]: https://npmjs.com/package/conventional-changelog-ember

Expand All @@ -15,6 +20,9 @@
[deps]: https://img.shields.io/librariesio/release/npm/conventional-changelog-ember
[deps-url]: https://libraries.io/npm/conventional-changelog-ember/tree

[size]: https://packagephobia.com/badge?p=conventional-changelog-ember
[size-url]: https://packagephobia.com/result?p=conventional-changelog-ember

[build]: https://img.shields.io/github/actions/workflow/status/conventional-changelog/conventional-changelog/ci.yaml?branch=master
[build-url]: https://github.com/conventional-changelog/conventional-changelog/actions

Expand Down
25 changes: 11 additions & 14 deletions packages/conventional-changelog-ember/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,30 +3,27 @@
"type": "module",
"version": "4.0.0",
"description": "conventional-changelog ember preset",
"exports": "./index.js",
"author": "Steve Mao",
"license": "ISC",
"homepage": "https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-ember#readme",
"repository": {
"type": "git",
"url": "https://github.com/conventional-changelog/conventional-changelog.git"
"url": "https://github.com/conventional-changelog/conventional-changelog.git",
"directory": "packages/conventional-changelog-ember"
},
"bugs": {
"url": "https://github.com/conventional-changelog/conventional-changelog/issues"
},
"keywords": [
"conventional-changelog",
"ember",
"preset"
],
"author": "Steve Mao",
"engines": {
"node": ">=16"
},
"license": "ISC",
"exports": "./src/index.js",
"files": [
"whatBump.js",
"index.js",
"parser.js",
"writer.js",
"templates"
],
"bugs": {
"url": "https://github.com/conventional-changelog/conventional-changelog/issues"
},
"homepage": "https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-ember#readme"
"src"
]
}
2 changes: 1 addition & 1 deletion packages/conventional-changelog-ember/test/index.spec.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { describe, beforeEach, afterEach, it, expect } from 'vitest'
import conventionalChangelogCore from 'conventional-changelog-core'
import { TestTools } from '../../../tools/index.ts'
import preset from '../index.js'
import preset from '../src/index.js'

let testTools

Expand Down

0 comments on commit 90abd8a

Please sign in to comment.