@anolilab/semantic-release-preset 1.0.2 → 1.2.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +28 -0
  2. package/README.md +36 -0
  3. package/package.json +25 -15
package/CHANGELOG.md CHANGED
@@ -1,3 +1,31 @@
1
+ ### @anolilab/semantic-release-preset [1.2.1](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/semantic-release-preset@1.2.0...@anolilab/semantic-release-preset@1.2.1) (2022-01-11)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** update commitlint monorepo ([e0eae7c](https://github.com/anolilab/javascript-style-guide/commit/e0eae7cb4874223087f522949f3a86af1a494181))
7
+
8
+ ## @anolilab/semantic-release-preset [1.2.0](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/semantic-release-preset@1.1.0...@anolilab/semantic-release-preset@1.2.0) (2021-12-12)
9
+
10
+
11
+ ### Features
12
+
13
+ * updated [@commitlint](https://github.com/commitlint) and [@semantic-release](https://github.com/semantic-release) deps ([b331dd0](https://github.com/anolilab/javascript-style-guide/commit/b331dd0d14480590bbd7ceed2dba93c8164471fd))
14
+
15
+ ## @anolilab/semantic-release-preset [1.1.0](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/semantic-release-preset@1.0.3...@anolilab/semantic-release-preset@1.1.0) (2021-10-26)
16
+
17
+
18
+ ### Features
19
+
20
+ * updated all deps ([0320055](https://github.com/anolilab/javascript-style-guide/commit/0320055caf8301a6c3bf06cff6ee58578b9ceae5))
21
+
22
+ ### @anolilab/semantic-release-preset [1.0.3](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/semantic-release-preset@1.0.2...@anolilab/semantic-release-preset@1.0.3) (2021-09-02)
23
+
24
+
25
+ ### Bug Fixes
26
+
27
+ * added funding to the package ([f90d18f](https://github.com/anolilab/javascript-style-guide/commit/f90d18f8347a4bdc395b1740c85ac74a4072297c))
28
+
1
29
  ### @anolilab/semantic-release-preset [1.0.2](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/semantic-release-preset@1.0.1...@anolilab/semantic-release-preset@1.0.2) (2021-09-02)
2
30
 
3
31
 
package/README.md CHANGED
@@ -2,6 +2,18 @@
2
2
 
3
3
  Semantic-release shareable configuration to publish GitHub projects.
4
4
 
5
+ ---
6
+
7
+ <div align="center">
8
+ <p>
9
+ <sup>
10
+ Daniel Bannert's open source work is supported by the community on <a href="https://github.com/sponsors/prisis">GitHub Sponsors</a>
11
+ </sup>
12
+ </p>
13
+ </div>
14
+
15
+ ---
16
+
5
17
  ## Install
6
18
 
7
19
  ```bash
@@ -248,6 +260,30 @@ Either way, you have to create a GitHub personal access token for the committer
248
260
 
249
261
  > Note: GitHub secrets not shared with forks and pull requests, so no one that doesn’t have write access to your repo can use of them.
250
262
 
263
+ ## Supported Node.js Versions
264
+
265
+ Libraries in this ecosystem make the best effort to track
266
+ [Node.js' release schedule](https://nodejs.org/en/about/releases/). Here's [a
267
+ post on why we think this is important](https://medium.com/the-node-js-collection/maintainers-should-consider-following-node-js-release-schedule-ab08ed4de71a).
268
+
269
+ Contributing
270
+ ------------
271
+
272
+ If you would like to help take a look at the [list of issues](https://github.com/anolilab/javascript-style-guide/issues) and check our [Contributing](.github/CONTRIBUTING.md) guild.
273
+
274
+ > **Note:** please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms.
275
+
276
+ Credits
277
+ -------------
278
+
279
+ - [Daniel Bannert](https://github.com/prisis)
280
+ - [All Contributors](https://github.com/anolilab/javascript-style-guide/graphs/contributors)
281
+
282
+ License
283
+ -------------
284
+
285
+ The anolilab javascript-style-guide is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT)
286
+
251
287
  [1]: https://github.com/semantic-release/commit-analyzer
252
288
  [2]: https://github.com/semantic-release/release-notes-generator
253
289
  [3]: https://github.com/semantic-release/changelog
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anolilab/semantic-release-preset",
3
- "version": "1.0.2",
3
+ "version": "1.2.1",
4
4
  "description": "Anolilab Coding Standard for semantic-release.",
5
5
  "keywords": [
6
6
  "anolilab",
@@ -13,12 +13,22 @@
13
13
  "github",
14
14
  "git"
15
15
  ],
16
- "homepage": "http://anolilab.com/nodejs/packages/semantic-release-preset",
16
+ "homepage": "https://anolilab.com/nodejs/packages/semantic-release-preset",
17
17
  "repository": {
18
18
  "type": "git",
19
19
  "url": "https://github.com/anolilab/javascript-style-guide.git",
20
20
  "directory": "packages/semantic-release-preset"
21
21
  },
22
+ "funding": [
23
+ {
24
+ "type": "github",
25
+ "url": "https://github.com/sponsors/prisis"
26
+ },
27
+ {
28
+ "type": "consulting",
29
+ "url": "https://anolilab.com/support"
30
+ }
31
+ ],
22
32
  "license": "MIT",
23
33
  "author": {
24
34
  "name": "Daniel Bannert",
@@ -38,26 +48,26 @@
38
48
  "postinstall": "node lib/postinstall.js"
39
49
  },
40
50
  "dependencies": {
41
- "@commitlint/cli": "^13.1.0",
42
- "@commitlint/config-conventional": "^13.1.0",
43
- "@commitlint/core": "^13.1.0",
44
- "@semantic-release/changelog": "^5.0.1",
45
- "@semantic-release/commit-analyzer": "^8.0.1",
46
- "@semantic-release/exec": "^5.0.0",
47
- "@semantic-release/git": "^9.0.0",
48
- "@semantic-release/github": "^7.2.3",
49
- "@semantic-release/npm": "^7.1.3",
50
- "@semantic-release/release-notes-generator": "^9.0.3",
51
+ "@commitlint/cli": "^16.0.0",
52
+ "@commitlint/config-conventional": "^16.0.0",
53
+ "@commitlint/core": "^16.0.0",
54
+ "@semantic-release/changelog": "^6.0.1",
55
+ "@semantic-release/commit-analyzer": "^9.0.2",
56
+ "@semantic-release/exec": "^6.0.2",
57
+ "@semantic-release/git": "^10.0.1",
58
+ "@semantic-release/github": "^8.0.2",
59
+ "@semantic-release/npm": "^8.0.3",
60
+ "@semantic-release/release-notes-generator": "^10.0.3",
51
61
  "commitizen": "^4.2.4",
52
- "conventional-changelog-conventionalcommits": "^4.6.0",
62
+ "conventional-changelog-conventionalcommits": "^4.6.1",
53
63
  "cz-conventional-changelog": "^3.3.0",
54
64
  "semantic-release-conventional-commits": "^2.0.1"
55
65
  },
56
66
  "devDependencies": {
57
- "semantic-release": "^17.4.6"
67
+ "semantic-release": "^18.0.1"
58
68
  },
59
69
  "peerDependencies": {
60
- "semantic-release": "^17.4.6"
70
+ "semantic-release": "^18.0.1"
61
71
  },
62
72
  "engines": {
63
73
  "node": ">=12"