@ivuorinen/base-configs 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +13 -0
- package/LICENSE +21 -0
- package/README.md +21 -0
- package/package.json +38 -0
package/CHANGELOG.md
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
# Change Log
|
2
|
+
|
3
|
+
All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
4
|
+
|
5
|
+
# 1.1.0 (2023-10-30)
|
6
|
+
|
7
|
+
### Bug Fixes
|
8
|
+
|
9
|
+
- **base-configs:** convert config from ES module ([88dbe39](https://github.com/ivuorinen/base-configs/commit/88dbe395d1843384edf97eab4ee5c43810deae4f))
|
10
|
+
|
11
|
+
### Features
|
12
|
+
|
13
|
+
- **package:** new pkg: @ivuorinen/base-configs ([#121](https://github.com/ivuorinen/base-configs/issues/121)) ([feddfcf](https://github.com/ivuorinen/base-configs/commit/feddfcfdba391f8ed4bf59589737a340401e4fba))
|
package/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2023 Ismo Vuorinen
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
# `@ivuorinen/base-configs`
|
2
|
+
|
3
|
+
This is a meta package for all my base configs.
|
4
|
+
|
5
|
+
You can find all the individual configs in the `packages` folder.
|
6
|
+
|
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!
|
10
|
+
|
11
|
+
## Installation
|
12
|
+
|
13
|
+
```bash
|
14
|
+
npm install @ivuorinen/base-configs --save-dev
|
15
|
+
|
16
|
+
yarn add @ivuorinen/base-configs --dev
|
17
|
+
```
|
18
|
+
|
19
|
+
## License
|
20
|
+
|
21
|
+
MIT License. See [LICENSE](LICENSE) for more info.
|
package/package.json
ADDED
@@ -0,0 +1,38 @@
|
|
1
|
+
{
|
2
|
+
"name": "@ivuorinen/base-configs",
|
3
|
+
"version": "1.1.0",
|
4
|
+
"description": "ivuorinen's shareable configurations meta package",
|
5
|
+
"author": {
|
6
|
+
"name": "Ismo Vuorinen",
|
7
|
+
"url": "https://github.com/ivuorinen"
|
8
|
+
},
|
9
|
+
"bugs": {
|
10
|
+
"url": "https://github.com/ivuorinen/base-configs/issues"
|
11
|
+
},
|
12
|
+
"engines": {
|
13
|
+
"node": ">=18"
|
14
|
+
},
|
15
|
+
"homepage": "https://github.com/ivuorinen/base-configs/tree/main/packages/base-configs#readme",
|
16
|
+
"keywords": [
|
17
|
+
"base-config",
|
18
|
+
"config",
|
19
|
+
"ivuorinen"
|
20
|
+
],
|
21
|
+
"license": "MIT",
|
22
|
+
"publishConfig": {
|
23
|
+
"access": "public"
|
24
|
+
},
|
25
|
+
"repository": {
|
26
|
+
"type": "git",
|
27
|
+
"url": "git+https://github.com/ivuorinen/base-configs.git"
|
28
|
+
},
|
29
|
+
"dependencies": {
|
30
|
+
"@ivuorinen/browserslist-config": "^0.2.1",
|
31
|
+
"@ivuorinen/commitlint-config": "^0.2.3",
|
32
|
+
"@ivuorinen/eslint-config": "^0.3.3",
|
33
|
+
"@ivuorinen/markdownlint-config": "^0.2.1",
|
34
|
+
"@ivuorinen/prettier-config": "^0.2.1",
|
35
|
+
"@ivuorinen/semantic-release-config": "^0.2.1"
|
36
|
+
},
|
37
|
+
"gitHead": "33a338c34715a618415d6e782f4d6b95250c40d0"
|
38
|
+
}
|