formatting
This commit is contained in:
parent
53e0f0569f
commit
b33dd78bd1
@ -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'); }
|
||||
});
|
||||
|
@ -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;
|
||||
}
|
||||
|
@ -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'); }
|
||||
});
|
||||
|
@ -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;
|
||||
}
|
||||
|
@ -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;
|
||||
}
|
||||
|
@ -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;
|
||||
}
|
||||
|
@ -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;
|
||||
}
|
||||
|
@ -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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user