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,12 +26,13 @@ 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) }
);
}
}
/**
@ -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

@ -13,7 +13,7 @@ const pkg = JSON.parse (fs.readFileSync ('package.json', 'utf-8'));
fs.writeFileSync ('package.json', JSON.stringify (pkg, null, 2));
child_process.execSync ('yarn lint', { stdio: 'inherit' });
if (typeof pkg.scripts !=='undefined' && typeof pkg.scripts.test === 'string')
if (typeof pkg.scripts !== 'undefined' && typeof pkg.scripts.test === 'string')
child_process.execSync ('yarn test', { stdio: 'inherit' });
child_process.exec ('git log -1 | grep \'\\[no publish\\]\'')
@ -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),
@ -34,6 +34,7 @@ function run (folder, args) {
filter: (src, dest) => !fs.existsSync (dest)
}
);
}
}
/**
@ -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),
@ -34,6 +34,7 @@ function run (folder, args) {
filter: (src, dest) => !fs.existsSync (dest)
}
);
}
}
/**
@ -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;
}