Skip to content

Commit

Permalink
Merge pull request #2 from ignatisD/staging
Browse files Browse the repository at this point in the history
staging
  • Loading branch information
ignatisD authored Nov 14, 2021
2 parents a6c8f18 + aca1c04 commit 6a8ea88
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# API keys and secrets
.env
.env*
!.env.example

# Dependency directory
node_modules

Expand Down
44 changes: 44 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,20 @@
"url": "https://github.com/ignatisD/cbrm-elasticsearch/issues"
},
"homepage": "https://github.com/ignatisD/cbrm-elasticsearch#readme",
"nodemonConfig": {
"verbose": false,
"watch": [
"src/**/*.ts",
".env"
],
"ignore": [
"src/**/*.spec.ts"
],
"signal": "SIGTERM",
"delay": 1,
"ext": "ts",
"exec": "ts-node"
},
"dependencies": {
"@ignatisd/cbrm": "^1.0",
"bodybuilder": "^2.4.0",
Expand All @@ -47,5 +61,35 @@
"semantic-release": "^18.0.0",
"ts-node": "^5.0.1",
"typescript": "^4.4"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/",
"tag": "latest",
"branches": [
"master"
]
},
"release": {
"branches": [
"master"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"pkgRoot": ".",
"tarballDir": "release"
}
],
[
"@semantic-release/github",
{
"assets": "release/*.tgz"
}
]
]
}
}

0 comments on commit 6a8ea88

Please sign in to comment.