formatting

This commit is contained in:
Timo Hocker 2020-02-20 10:47:38 +01:00
parent 53e0f0569f
commit b33dd78bd1
8 changed files with 23 additions and 15 deletions

View File

@ -22,6 +22,5 @@ child_process.exec ('git log -1 | grep \'\\[no publish\\]\'')
console.log ('build not marked for deployment');
process.exit (1);
}
else
child_process.execSync ('yarn publish');
else { child_process.execSync ('yarn publish'); }
});

View File

@ -26,13 +26,14 @@ function run (folder, args) {
: 'general'
);
for (const f of fs.readdirSync (template))
for (const f of fs.readdirSync (template)) {
fs.copy (
path.join (template, f),
path.join (folder, f),
{ filter: (src, dest) => !fs.existsSync (dest) }
);
}
}
/**
* checks if the arguments meet the requirements
@ -51,11 +52,12 @@ function assert (folder) {
reason: 'cwd does not exist (internal error)'
}
];
for (const test of tests)
for (const test of tests) {
if (!test.f ()) {
console.log (test.reason);
return false;
}
}
return true;
}

View File

@ -22,6 +22,5 @@ child_process.exec ('git log -1 | grep \'\\[no publish\\]\'')
console.log ('build not marked for deployment');
process.exit (1);
}
else
child_process.execSync ('yarn publish');
else { child_process.execSync ('yarn publish'); }
});

View File

@ -57,11 +57,12 @@ function assert (folder, args) {
reason: 'migration already exists'
}
];
for (const test of tests)
for (const test of tests) {
if (!test.f ()) {
console.log (test.reason);
return false;
}
}
return true;
}

View File

@ -26,7 +26,7 @@ async function run (folder, args) {
const template = path.join (__dirname, 'template');
if (!fs.existsSync (snip_folder))
fs.mkdir (snip_folder);
for (const f of fs.readdirSync (template))
for (const f of fs.readdirSync (template)) {
fs.copy (
path.join (template, f),
path.join (snip_folder, f),
@ -35,6 +35,7 @@ async function run (folder, args) {
filter: (src, dest) => !fs.existsSync (dest)
}
);
}
child_process.execSync (
'git init',
@ -106,11 +107,12 @@ function assert (folder, args) {
reason: 'folder already exists'
}
];
for (const test of tests)
for (const test of tests) {
if (!test.f ()) {
console.log (test.reason);
return false;
}
}
return true;
}

View File

@ -57,11 +57,12 @@ function assert (folder, args) {
reason: 'file already exists'
}
];
for (const test of tests)
for (const test of tests) {
if (!test.f ()) {
console.log (test.reason);
return false;
}
}
return true;
}

View File

@ -25,7 +25,7 @@ function run (folder, args) {
const template = path.join (__dirname, 'template');
if (!fs.existsSync (snip_folder))
fs.mkdir (snip_folder);
for (const f of fs.readdirSync (template))
for (const f of fs.readdirSync (template)) {
fs.copy (
path.join (template, f),
path.join (snip_folder, f),
@ -35,6 +35,7 @@ function run (folder, args) {
}
);
}
}
/**
* checks if the arguments meet the requirements
@ -75,11 +76,12 @@ function assert (folder, args) {
reason: 'folder already exists'
}
];
for (const test of tests)
for (const test of tests) {
if (!test.f ()) {
console.log (test.reason);
return false;
}
}
return true;
}

View File

@ -25,7 +25,7 @@ function run (folder, args) {
const template = path.join (__dirname, 'template');
if (!fs.existsSync (snip_folder))
fs.mkdir (snip_folder);
for (const f of fs.readdirSync (template))
for (const f of fs.readdirSync (template)) {
fs.copy (
path.join (template, f),
path.join (snip_folder, f),
@ -35,6 +35,7 @@ function run (folder, args) {
}
);
}
}
/**
* checks if the arguments meet the requirements
@ -75,11 +76,12 @@ function assert (folder, args) {
reason: 'folder already exists'
}
];
for (const test of tests)
for (const test of tests) {
if (!test.f ()) {
console.log (test.reason);
return false;
}
}
return true;
}