Skip to content
This repository was archived by the owner on Nov 21, 2024. It is now read-only.

Commit 596ab01

Browse files
committed
chore(version): Release
1 parent 638b9e2 commit 596ab01

File tree

6 files changed

+16
-7
lines changed

6 files changed

+16
-7
lines changed

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## [4.1.4](https://github.com/rucken/todo-nestjs/compare/4.1.3...4.1.4) (2019-05-10)
2+
3+
4+
### Bug Fixes
5+
6+
* Update dependencies ([638b9e2](https://github.com/rucken/todo-nestjs/commit/638b9e2))
7+
8+
9+
110
## [4.1.3](https://github.com/rucken/todo-nestjs/compare/4.1.2...4.1.3) (2019-04-23)
211

312

apps/demo/src/app/config/config.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ const connectionString = new ConnectionString(process.env.DATABASE_URL || 'sqlit
2323
const dbFile =
2424
connectionString.protocol === 'sqlite'
2525
? './' +
26-
(connectionString.hosts ? connectionString.hosts[0].name : '') +
27-
(connectionString.path ? '/' + connectionString.path[0] : '')
26+
(connectionString.hosts ? connectionString.hosts[0].name : '') +
27+
(connectionString.path ? '/' + connectionString.path[0] : '')
2828
: '';
2929
try {
3030
accessSync(envFile);

libs/rucken/todo-nestjs/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rucken/todo-nestjs",
3-
"version": "4.1.3",
3+
"version": "4.1.4",
44
"engines": {
55
"node": ">=11",
66
"npm": ">=6.5.0"

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "rucken-todo-nestjs",
3-
"version": "4.1.3",
3+
"version": "4.1.4",
44
"engines": {
55
"node": ">=11",
66
"npm": ">=6.5.0"

tsconfig.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@
2020
"baseUrl": ".",
2121
"paths": {
2222
"@rucken/todo-nestjs": [
23-
"libs/rucken/todo-nestjs/src"
23+
"dist/rucken/todo-nestjs"
2424
],
2525
"@rucken/todo-nestjs/*": [
26-
"libs/rucken/todo-nestjs/src/*"
26+
"dist/rucken/todo-nestjs/*"
2727
]
2828
}
2929
},

0 commit comments

Comments
 (0)