@ivuorinen/base-configs 1.1.0 → 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -0
- package/README.md +19 -5
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## [1.1.1](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/base-configs@1.1.0...@ivuorinen/base-configs@1.1.1) (2023-10-31)
|
|
6
|
+
|
|
7
|
+
**Note:** Version bump only for package @ivuorinen/base-configs
|
|
8
|
+
|
|
5
9
|
# 1.1.0 (2023-10-30)
|
|
6
10
|
|
|
7
11
|
### Bug Fixes
|
package/README.md
CHANGED
|
@@ -1,21 +1,35 @@
|
|
|
1
|
-
#
|
|
1
|
+
# @ivuorinen/base-configs <!-- omit in toc -->
|
|
2
|
+
|
|
3
|
+
[![npm package][npm-badge]][npm-link] [![license MIT][license-badge]][license-link] [![ivuorinen's Code Style][style-badge]][style-link]
|
|
2
4
|
|
|
3
5
|
This is a meta package for all my base configs.
|
|
4
6
|
|
|
5
7
|
You can find all the individual configs in the `packages` folder.
|
|
6
8
|
|
|
7
|
-
The main reason for this package is to make it easier to use these configs in
|
|
8
|
-
other projects, and to update them all at once. No more pull requests to update
|
|
9
|
-
all the configs one at a time!
|
|
9
|
+
The main reason for this package is to make it easier to use these configs in other projects, and to update them all at once. No more pull requests to update all the configs one at a time!
|
|
10
10
|
|
|
11
11
|
## Installation
|
|
12
12
|
|
|
13
13
|
```bash
|
|
14
|
+
# npm
|
|
14
15
|
npm install @ivuorinen/base-configs --save-dev
|
|
15
16
|
|
|
17
|
+
# yarn
|
|
16
18
|
yarn add @ivuorinen/base-configs --dev
|
|
17
19
|
```
|
|
18
20
|
|
|
21
|
+
## Changelog
|
|
22
|
+
|
|
23
|
+
See [CHANGELOG][changelog-link] for a human-readable history of changes.
|
|
24
|
+
|
|
19
25
|
## License
|
|
20
26
|
|
|
21
|
-
MIT License. See [LICENSE]
|
|
27
|
+
MIT License. See [LICENSE][license-link] for more info.
|
|
28
|
+
|
|
29
|
+
[changelog-link]: ./CHANGELOG.md
|
|
30
|
+
[license-badge]: https://img.shields.io/github/license/ivuorinen/base-configs?style=flat-square&labelColor=292a44&color=663399
|
|
31
|
+
[license-link]: ./LICENSE
|
|
32
|
+
[npm-badge]: https://img.shields.io/npm/v/@ivuorinen/base-configs?style=flat-square&labelColor=292a44&color=663399
|
|
33
|
+
[npm-link]: https://www.npmjs.com/package/@ivuorinen/base-configs
|
|
34
|
+
[style-badge]: https://img.shields.io/badge/code_style-ivuorinen%E2%80%99s-663399.svg?labelColor=292a44&style=flat-square
|
|
35
|
+
[style-link]: https://github.com/ivuorinen/base-configs
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ivuorinen/base-configs",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "ivuorinen's shareable configurations meta package",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Ismo Vuorinen",
|
|
@@ -27,12 +27,12 @@
|
|
|
27
27
|
"url": "git+https://github.com/ivuorinen/base-configs.git"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@ivuorinen/browserslist-config": "^0.2.
|
|
31
|
-
"@ivuorinen/commitlint-config": "^0.2.
|
|
32
|
-
"@ivuorinen/eslint-config": "^0.3.
|
|
33
|
-
"@ivuorinen/markdownlint-config": "^0.2.
|
|
34
|
-
"@ivuorinen/prettier-config": "^0.2.
|
|
35
|
-
"@ivuorinen/semantic-release-config": "^0.2.
|
|
30
|
+
"@ivuorinen/browserslist-config": "^0.2.2",
|
|
31
|
+
"@ivuorinen/commitlint-config": "^0.2.4",
|
|
32
|
+
"@ivuorinen/eslint-config": "^0.3.4",
|
|
33
|
+
"@ivuorinen/markdownlint-config": "^0.2.2",
|
|
34
|
+
"@ivuorinen/prettier-config": "^0.2.2",
|
|
35
|
+
"@ivuorinen/semantic-release-config": "^0.2.2"
|
|
36
36
|
},
|
|
37
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "007b29019ebc5f13a231d96c17710f52b1760368"
|
|
38
38
|
}
|