Skip to content

Commit ce6791c

Browse files
author
Vitor Hugo Salgado
committed
build: add package.json for release scripts + update gitignore + update standard-version config
1 parent 138d4d2 commit ce6791c

File tree

9 files changed

+3398
-3
lines changed

9 files changed

+3398
-3
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -61,3 +61,4 @@ infer-out/
6161

6262
# Project
6363
tools/google-java-format
64+
node_modules

.versionrc.js

+19
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
'use strict'
22

33
module.exports = {
4+
types: [
5+
{ type: 'feat', section: 'Features' },
6+
{ type: 'fix', section: 'Bug Fixes' },
7+
{ type: 'chore', section: 'Chore', hidden: false },
8+
{ type: 'docs', section: 'Docs', hidden: false },
9+
{ type: 'style', section: 'Refactor', hidden: false },
10+
{ type: 'refactor', section: 'Refactor', hidden: false },
11+
{ type: 'perf', section: 'Perf', hidden: false },
12+
{ type: 'test', section: 'Refactor', hidden: false },
13+
{ type: 'build', section: 'Build', hidden: false }
14+
],
415
bumpFiles: [
516
{
617
filename: 'VERSION.txt',
@@ -9,6 +20,14 @@ module.exports = {
920
{
1021
filename: 'README.md',
1122
updater: require('./scripts/release/changeReadmeVersion')
23+
},
24+
{
25+
filename: 'package.json',
26+
type: 'json'
27+
},
28+
{
29+
filename: 'package-lock.json',
30+
type: 'json'
1231
}
1332
]
1433
}

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ using just a couple of **@annotations** :)
3636
Using Gradle:
3737

3838
```
39-
implementation "io.github.vitorsalgado.puma4j:puma4j-junit5-extension:2.0.0"
39+
implementation "io.github.vitorsalgado.puma4j:puma4j-junit5-extension:2.0.1"
4040
```
4141

4242
or Maven:
@@ -45,7 +45,7 @@ or Maven:
4545
<dependency>
4646
<groupId>io.github.vitorsalgado.puma4j</groupId>
4747
<artifactId>puma4j-junit5-extension</artifactId>
48-
<version>2.0.0</version>
48+
<version>2.0.1</version>
4949
</dependency>
5050
```
5151

@@ -134,7 +134,7 @@ private val simpleModel: SimpleModel by res("simple.json")
134134
To use the delegate `res`, add the library below to your project:
135135

136136
```
137-
implementation "io.github.vitorsalgado.puma4j:puma4j-kotlin:2.0.0"
137+
implementation "io.github.vitorsalgado.puma4j:puma4j-kotlin:2.0.1"
138138
```
139139

140140
---

example/.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/out/
2+
/bin/
3+
gen/
4+
build/

0 commit comments

Comments
 (0)