Logging & and doc improved
This commit is contained in:
parent
a0e76b806d
commit
d0dc1072d1
|
@ -237,7 +237,7 @@ routines with an standard CVS system as if they were normal application code.
|
||||||
Also, the existing tools are too complex and require too much knowledge to
|
Also, the existing tools are too complex and require too much knowledge to
|
||||||
start a small project.
|
start a small project.
|
||||||
|
|
||||||
## Todo
|
## ToDo
|
||||||
|
|
||||||
* Undo changes when there is an error applying a version using "undo" files.
|
* Undo changes when there is an error applying a version using "undo" files.
|
||||||
* Use a custom *Dockerfile* for local database container.
|
* Use a custom *Dockerfile* for local database container.
|
||||||
|
|
2
myvc.js
2
myvc.js
|
@ -325,7 +325,7 @@ class MyVC {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (notFound) {
|
if (notFound) {
|
||||||
console.warn(`Commit id (${commitSha}) not found trying to fetch from git remote`.yellow);
|
console.warn(`Database commit not found, trying git fetch`.yellow);
|
||||||
await repo.fetchAll();
|
await repo.fetchAll();
|
||||||
commit = await repo.getCommit(commitSha);
|
commit = await repo.getCommit(commitSha);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "myvc",
|
"name": "myvc",
|
||||||
"version": "1.4.4",
|
"version": "1.4.5",
|
||||||
"author": "Verdnatura Levante SL",
|
"author": "Verdnatura Levante SL",
|
||||||
"description": "MySQL Version Control",
|
"description": "MySQL Version Control",
|
||||||
"license": "GPL-3.0",
|
"license": "GPL-3.0",
|
||||||
|
|
|
@ -8,6 +8,6 @@
|
||||||
"type": "git"
|
"type": "git"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"myvc": "^1.3.11"
|
"myvc": "^1.4.5"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue