#3989 Added clean command
This commit is contained in:
parent
726e979544
commit
8c3badaa75
11
README.md
11
README.md
|
@ -190,11 +190,16 @@ Creates a new version folder, when name is not specified it generates a random
|
||||||
name mixing a color with a plant name.
|
name mixing a color with a plant name.
|
||||||
|
|
||||||
```text
|
```text
|
||||||
$ myvc version [<name>] [-o|--hold]
|
$ myvc version [<name>]
|
||||||
```
|
```
|
||||||
|
|
||||||
By default it also cleans all already applied versions older than
|
### clean
|
||||||
*maxOldVersions*, you can provide de *--hold* option to prevent this behavior.
|
|
||||||
|
Cleans all already applied versions older than *maxOldVersions*.
|
||||||
|
|
||||||
|
```text
|
||||||
|
$ myvc clean
|
||||||
|
```
|
||||||
|
|
||||||
## Local server commands
|
## Local server commands
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,56 @@
|
||||||
|
|
||||||
|
const MyVC = require('./myvc');
|
||||||
|
const fs = require('fs-extra');
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Cleans old applied versions.
|
||||||
|
*/
|
||||||
|
class Clean {
|
||||||
|
get usage() {
|
||||||
|
return {
|
||||||
|
description: 'Cleans old applied versions'
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
get localOpts() {
|
||||||
|
return {
|
||||||
|
default: {
|
||||||
|
remote: 'production'
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
async run(myvc, opts) {
|
||||||
|
await myvc.dbConnect();
|
||||||
|
const version = await myvc.fetchDbVersion() || {};
|
||||||
|
const number = version.number;
|
||||||
|
|
||||||
|
const verionsDir =`${opts.myvcDir}/versions`;
|
||||||
|
const oldVersions = [];
|
||||||
|
const versionDirs = await fs.readdir(verionsDir);
|
||||||
|
for (const versionDir of versionDirs) {
|
||||||
|
const dirVersion = myvc.parseVersionDir(versionDir);
|
||||||
|
if (!dirVersion) continue;
|
||||||
|
|
||||||
|
if (parseInt(dirVersion.number) < parseInt(number))
|
||||||
|
oldVersions.push(versionDir);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (opts.maxOldVersions
|
||||||
|
&& oldVersions.length > opts.maxOldVersions) {
|
||||||
|
oldVersions.splice(-opts.maxOldVersions);
|
||||||
|
|
||||||
|
for (const oldVersion of oldVersions)
|
||||||
|
await fs.remove(`${verionsDir}/${oldVersion}`,
|
||||||
|
{recursive: true});
|
||||||
|
|
||||||
|
console.log(`Old versions deleted: ${oldVersions.length}`);
|
||||||
|
} else
|
||||||
|
console.log(`No versions to delete.`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = Clean;
|
||||||
|
|
||||||
|
if (require.main === module)
|
||||||
|
new MyVC().run(Clean);
|
|
@ -75,7 +75,7 @@ class Dump {
|
||||||
await dumpStream.end();
|
await dumpStream.end();
|
||||||
|
|
||||||
const version = await myvc.fetchDbVersion();
|
const version = await myvc.fetchDbVersion();
|
||||||
if (version){
|
if (version) {
|
||||||
await fs.writeFile(
|
await fs.writeFile(
|
||||||
`${dumpDir}/.dump.json`,
|
`${dumpDir}/.dump.json`,
|
||||||
JSON.stringify(version)
|
JSON.stringify(version)
|
||||||
|
|
|
@ -10,8 +10,7 @@ class Version {
|
||||||
return {
|
return {
|
||||||
description: 'Creates a new version',
|
description: 'Creates a new version',
|
||||||
params: {
|
params: {
|
||||||
name: 'Name for the new version',
|
name: 'Name for the new version'
|
||||||
hold: 'Do not clean old versions'
|
|
||||||
},
|
},
|
||||||
operand: 'name'
|
operand: 'name'
|
||||||
};
|
};
|
||||||
|
@ -20,15 +19,11 @@ class Version {
|
||||||
get localOpts() {
|
get localOpts() {
|
||||||
return {
|
return {
|
||||||
alias: {
|
alias: {
|
||||||
name: 'n',
|
name: 'n'
|
||||||
hold: 'o'
|
|
||||||
},
|
},
|
||||||
string: [
|
string: [
|
||||||
'name'
|
'name'
|
||||||
],
|
],
|
||||||
boolean: [
|
|
||||||
'hold'
|
|
||||||
],
|
|
||||||
default: {
|
default: {
|
||||||
remote: 'production'
|
remote: 'production'
|
||||||
}
|
}
|
||||||
|
@ -38,7 +33,6 @@ class Version {
|
||||||
async run(myvc, opts) {
|
async run(myvc, opts) {
|
||||||
let newVersionDir;
|
let newVersionDir;
|
||||||
const verionsDir =`${opts.myvcDir}/versions`;
|
const verionsDir =`${opts.myvcDir}/versions`;
|
||||||
const oldVersions = [];
|
|
||||||
|
|
||||||
// Fetch last version number
|
// Fetch last version number
|
||||||
|
|
||||||
|
@ -88,9 +82,6 @@ class Version {
|
||||||
const dirVersion = myvc.parseVersionDir(versionDir);
|
const dirVersion = myvc.parseVersionDir(versionDir);
|
||||||
if (!dirVersion) continue;
|
if (!dirVersion) continue;
|
||||||
versionNames.add(dirVersion.name);
|
versionNames.add(dirVersion.name);
|
||||||
|
|
||||||
if (parseInt(dirVersion.number) < parseInt(number))
|
|
||||||
oldVersions.push(versionDir);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!versionName) {
|
if (!versionName) {
|
||||||
|
@ -140,19 +131,6 @@ class Version {
|
||||||
await fs.remove(newVersionDir, {recursive: true});
|
await fs.remove(newVersionDir, {recursive: true});
|
||||||
throw err;
|
throw err;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Remove old versions
|
|
||||||
|
|
||||||
if (opts.maxOldVersions && !opts.hold
|
|
||||||
&& oldVersions.length > opts.maxOldVersions) {
|
|
||||||
oldVersions.splice(-opts.maxOldVersions);
|
|
||||||
|
|
||||||
for (const oldVersion of oldVersions)
|
|
||||||
await fs.remove(`${verionsDir}/${oldVersion}`,
|
|
||||||
{recursive: true});
|
|
||||||
|
|
||||||
console.log(`Old versions deleted: ${oldVersions.length}`);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
5
myvc.js
5
myvc.js
|
@ -60,6 +60,7 @@ class MyVC {
|
||||||
'pull',
|
'pull',
|
||||||
'push',
|
'push',
|
||||||
'version',
|
'version',
|
||||||
|
'clean',
|
||||||
'dump',
|
'dump',
|
||||||
'start',
|
'start',
|
||||||
'run'
|
'run'
|
||||||
|
@ -125,11 +126,11 @@ class MyVC {
|
||||||
depVersion[1] === myVersion[1] &&
|
depVersion[1] === myVersion[1] &&
|
||||||
depVersion[2] === myVersion[2];
|
depVersion[2] === myVersion[2];
|
||||||
if (!isSameVersion)
|
if (!isSameVersion)
|
||||||
throw new Error(`MyVC version differs a lot from package.json, please run 'npm i' first to install the proper version`);
|
throw new Error(`MyVC version differs a lot from package.json, please run 'npm i' first to install the proper version.`);
|
||||||
|
|
||||||
const isSameMinor = depVersion[3] === myVersion[3];
|
const isSameMinor = depVersion[3] === myVersion[3];
|
||||||
if (!isSameMinor)
|
if (!isSameMinor)
|
||||||
console.warn(`Warning! MyVC minor version differs from package.json, maybe you shoud run 'npm i' to install the proper version`.yellow);
|
console.warn(`Warning! MyVC minor version differs from package.json, maybe you shoud run 'npm i' to install the proper version.`.yellow);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Load method
|
// Load method
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "myvc",
|
"name": "myvc",
|
||||||
"version": "1.4.6",
|
"version": "1.4.7",
|
||||||
"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.4.6"
|
"myvc": "^1.4.7"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue