Skip to content

Commit d5e05be

Browse files
committed
build: prevent semrel from committing package-lock.json
1 parent 0621ffb commit d5e05be

File tree

4 files changed

+8
-10932
lines changed

4 files changed

+8
-10932
lines changed

.gitignore

+6-1
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,11 @@ coverage.xml
4949

5050
# virtual env
5151
venv/
52+
venv*/
5253
# python 3 virtual env
5354
python3/
5455

5556
*.env
56-
.env
5757

5858
# resources
5959
resources/output.wav
@@ -73,3 +73,8 @@ test/__init__.py
7373
.openapi-generator-ignore
7474
/.pydevproject
7575
/.settings/
76+
77+
# files produced by "npm install" commands during build
78+
package.json
79+
package-lock.json
80+
node_modules/

.npmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
package-lock=false

.releaserc

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
[
1414
"@semantic-release/git",
1515
{
16+
"assets" : [ "CHANGELOG.md" ],
1617
"message": "chore(release): ${nextRelease.version} release notes\n\n${nextRelease.notes}"
1718
}
1819
],

0 commit comments

Comments
 (0)