added CSA to monorepo

This commit is contained in:
AdrianGonz97
2023-05-16 18:29:15 -04:00
parent e33867283a
commit d1753dde7d
37 changed files with 1928 additions and 5 deletions

View File

@@ -1,9 +1,10 @@
var shell = require('shelljs');
var shell = require("shelljs");
if (!shell.which('git')) {
shell.echo('Sorry, this script requires git');
if (!shell.which("git")) {
shell.echo("Sorry, this script requires git");
shell.exit(1);
}
shell.exec('git clone https://github.com/skeletonlabs/create-skeleton-app packages/create-skeleton-app');
shell.exec('git clone https://github.com/skeletonlabs/skeletonlabs.co sites/skeletonlabs.co');
shell.exec(
"git clone https://github.com/skeletonlabs/skeletonlabs.co sites/skeletonlabs.co"
);