Skip to content

Commit

Permalink
Merge branch 'develop' of ixo:ixofoundation/ixo-cellnode into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael-Ixo committed Apr 16, 2024
2 parents d013251 + 0563fc2 commit 73fb0fa
Show file tree
Hide file tree
Showing 4 changed files with 2,894 additions and 51 deletions.
40 changes: 37 additions & 3 deletions .releaserc.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,43 @@
}
],
"ci": true,
"preset": "conventionalcommits",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/commit-analyzer",
{
"releaseRules": [
{ "breaking": true, "release": "major" },
{ "type": "feat", "release": "minor" },
{ "type": "fix", "release": "patch" },
{ "type": "perf", "release": "patch" },
{ "type": "build", "release": "patch" },
{ "scope": "security", "release": "patch" },
{ "type": "chore", "release": false },
{ "type": "ci", "release": false },
{ "type": "docs", "release": false },
{ "type": "refactor", "release": false },
{ "type": "revert", "release": false },
{ "type": "style", "release": false },
{ "type": "test", "release": false },
{ "scope": "no-release", "release": false },
{ "scope": "release", "release": "patch" }
],
"presetConfig": true
}
],
[
"@semantic-release/release-notes-generator",
{
"presetConfig": true
}
],
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
[
"@semantic-release/git",
{
Expand All @@ -25,4 +59,4 @@
],
"@semantic-release/github"
]
}
}
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=linux/amd64 node:18.15.0
FROM --platform=linux/amd64 node:18.17.0

# Create app directory
WORKDIR /app
Expand Down
8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ixo-cellnode",
"version": "0.1.3",
"version": "0.3.0-develop.4",
"description": "ixo service to create a project data store and more",
"repository": "https://github.com/ixofoundation/ixo-cellnode",
"main": "App.ts",
Expand All @@ -23,7 +23,6 @@
"license": "MIT",
"dependencies": {
"@prisma/client": "^4.5.0",
"@semantic-release/git": "^10.0.1",
"@web3-storage/w3up-client": "^12.2.1",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
Expand All @@ -43,9 +42,12 @@
"prisma": "^4.5.0"
},
"devDependencies": {
"@semantic-release/git": "^10.0.1",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.21",
"@types/node": "^18.15.10"
"@types/node": "^18.15.10",
"conventional-changelog-conventionalcommits": "^7.0.2",
"semantic-release": "22"
},
"prisma": {
"schema": "src/prisma/schema.prisma"
Expand Down
Loading

0 comments on commit 73fb0fa

Please sign in to comment.