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');
|
console.log ('build not marked for deployment');
|
||||||
process.exit (1);
|
process.exit (1);
|
||||||
}
|
}
|
||||||
else
|
else { child_process.execSync ('yarn publish'); }
|
||||||
child_process.execSync ('yarn publish');
|
|
||||||
});
|
});
|
||||||
|
@ -26,13 +26,14 @@ function run (folder, args) {
|
|||||||
: 'general'
|
: 'general'
|
||||||
);
|
);
|
||||||
|
|
||||||
for (const f of fs.readdirSync (template))
|
for (const f of fs.readdirSync (template)) {
|
||||||
fs.copy (
|
fs.copy (
|
||||||
path.join (template, f),
|
path.join (template, f),
|
||||||
path.join (folder, f),
|
path.join (folder, f),
|
||||||
{ filter: (src, dest) => !fs.existsSync (dest) }
|
{ filter: (src, dest) => !fs.existsSync (dest) }
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* checks if the arguments meet the requirements
|
* checks if the arguments meet the requirements
|
||||||
@ -51,11 +52,12 @@ function assert (folder) {
|
|||||||
reason: 'cwd does not exist (internal error)'
|
reason: 'cwd does not exist (internal error)'
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
for (const test of tests)
|
for (const test of tests) {
|
||||||
if (!test.f ()) {
|
if (!test.f ()) {
|
||||||
console.log (test.reason);
|
console.log (test.reason);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -22,6 +22,5 @@ child_process.exec ('git log -1 | grep \'\\[no publish\\]\'')
|
|||||||
console.log ('build not marked for deployment');
|
console.log ('build not marked for deployment');
|
||||||
process.exit (1);
|
process.exit (1);
|
||||||
}
|
}
|
||||||
else
|
else { child_process.execSync ('yarn publish'); }
|
||||||
child_process.execSync ('yarn publish');
|
|
||||||
});
|
});
|
||||||
|
@ -57,11 +57,12 @@ function assert (folder, args) {
|
|||||||
reason: 'migration already exists'
|
reason: 'migration already exists'
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
for (const test of tests)
|
for (const test of tests) {
|
||||||
if (!test.f ()) {
|
if (!test.f ()) {
|
||||||
console.log (test.reason);
|
console.log (test.reason);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -26,7 +26,7 @@ async function run (folder, args) {
|
|||||||
const template = path.join (__dirname, 'template');
|
const template = path.join (__dirname, 'template');
|
||||||
if (!fs.existsSync (snip_folder))
|
if (!fs.existsSync (snip_folder))
|
||||||
fs.mkdir (snip_folder);
|
fs.mkdir (snip_folder);
|
||||||
for (const f of fs.readdirSync (template))
|
for (const f of fs.readdirSync (template)) {
|
||||||
fs.copy (
|
fs.copy (
|
||||||
path.join (template, f),
|
path.join (template, f),
|
||||||
path.join (snip_folder, f),
|
path.join (snip_folder, f),
|
||||||
@ -35,6 +35,7 @@ async function run (folder, args) {
|
|||||||
filter: (src, dest) => !fs.existsSync (dest)
|
filter: (src, dest) => !fs.existsSync (dest)
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
}
|
||||||
|
|
||||||
child_process.execSync (
|
child_process.execSync (
|
||||||
'git init',
|
'git init',
|
||||||
@ -106,11 +107,12 @@ function assert (folder, args) {
|
|||||||
reason: 'folder already exists'
|
reason: 'folder already exists'
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
for (const test of tests)
|
for (const test of tests) {
|
||||||
if (!test.f ()) {
|
if (!test.f ()) {
|
||||||
console.log (test.reason);
|
console.log (test.reason);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -57,11 +57,12 @@ function assert (folder, args) {
|
|||||||
reason: 'file already exists'
|
reason: 'file already exists'
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
for (const test of tests)
|
for (const test of tests) {
|
||||||
if (!test.f ()) {
|
if (!test.f ()) {
|
||||||
console.log (test.reason);
|
console.log (test.reason);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -25,7 +25,7 @@ function run (folder, args) {
|
|||||||
const template = path.join (__dirname, 'template');
|
const template = path.join (__dirname, 'template');
|
||||||
if (!fs.existsSync (snip_folder))
|
if (!fs.existsSync (snip_folder))
|
||||||
fs.mkdir (snip_folder);
|
fs.mkdir (snip_folder);
|
||||||
for (const f of fs.readdirSync (template))
|
for (const f of fs.readdirSync (template)) {
|
||||||
fs.copy (
|
fs.copy (
|
||||||
path.join (template, f),
|
path.join (template, f),
|
||||||
path.join (snip_folder, f),
|
path.join (snip_folder, f),
|
||||||
@ -35,6 +35,7 @@ function run (folder, args) {
|
|||||||
}
|
}
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* checks if the arguments meet the requirements
|
* checks if the arguments meet the requirements
|
||||||
@ -75,11 +76,12 @@ function assert (folder, args) {
|
|||||||
reason: 'folder already exists'
|
reason: 'folder already exists'
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
for (const test of tests)
|
for (const test of tests) {
|
||||||
if (!test.f ()) {
|
if (!test.f ()) {
|
||||||
console.log (test.reason);
|
console.log (test.reason);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -25,7 +25,7 @@ function run (folder, args) {
|
|||||||
const template = path.join (__dirname, 'template');
|
const template = path.join (__dirname, 'template');
|
||||||
if (!fs.existsSync (snip_folder))
|
if (!fs.existsSync (snip_folder))
|
||||||
fs.mkdir (snip_folder);
|
fs.mkdir (snip_folder);
|
||||||
for (const f of fs.readdirSync (template))
|
for (const f of fs.readdirSync (template)) {
|
||||||
fs.copy (
|
fs.copy (
|
||||||
path.join (template, f),
|
path.join (template, f),
|
||||||
path.join (snip_folder, f),
|
path.join (snip_folder, f),
|
||||||
@ -35,6 +35,7 @@ function run (folder, args) {
|
|||||||
}
|
}
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* checks if the arguments meet the requirements
|
* checks if the arguments meet the requirements
|
||||||
@ -75,11 +76,12 @@ function assert (folder, args) {
|
|||||||
reason: 'folder already exists'
|
reason: 'folder already exists'
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
for (const test of tests)
|
for (const test of tests) {
|
||||||
if (!test.f ()) {
|
if (!test.f ()) {
|
||||||
console.log (test.reason);
|
console.log (test.reason);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user