@smi-digital/create-smi-app 2.4.0 → 2.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js
CHANGED
|
@@ -424,7 +424,7 @@ async function runStep(label, task) {
|
|
|
424
424
|
throw error;
|
|
425
425
|
}
|
|
426
426
|
}
|
|
427
|
-
async function
|
|
427
|
+
async function runCommandQuiet2(command, args, cwd) {
|
|
428
428
|
await new Promise((resolve, reject) => {
|
|
429
429
|
let stderr = "";
|
|
430
430
|
const child = spawn(command, args, {
|
|
@@ -464,7 +464,7 @@ async function createFrameworkApp(projectRoot, target) {
|
|
|
464
464
|
}
|
|
465
465
|
await runStep(
|
|
466
466
|
`Creating ${generator.displayName} ${target.label}`,
|
|
467
|
-
async () =>
|
|
467
|
+
async () => runCommandQuiet2(
|
|
468
468
|
generator.command,
|
|
469
469
|
generator.getArgs(target.directory),
|
|
470
470
|
projectRoot
|
|
@@ -597,6 +597,16 @@ async function createIntegrations(options, projectRoot, templatesDir) {
|
|
|
597
597
|
await applySequentially(index + 1);
|
|
598
598
|
};
|
|
599
599
|
await applySequentially(0);
|
|
600
|
+
await runStep("Configuring Astro SSR Adapter", async () => {
|
|
601
|
+
try {
|
|
602
|
+
await runCommandQuiet(
|
|
603
|
+
"npx",
|
|
604
|
+
["astro", "add", "node", "-y"],
|
|
605
|
+
join5(projectRoot, "frontend")
|
|
606
|
+
);
|
|
607
|
+
} catch {
|
|
608
|
+
}
|
|
609
|
+
});
|
|
600
610
|
}
|
|
601
611
|
|
|
602
612
|
// src/modules/createScaffold.ts
|
|
@@ -646,7 +656,7 @@ async function initializeGitRepository(projectRoot) {
|
|
|
646
656
|
} catch {
|
|
647
657
|
}
|
|
648
658
|
try {
|
|
649
|
-
await
|
|
659
|
+
await runCommandQuiet2("git", ["init"], projectRoot);
|
|
650
660
|
} catch {
|
|
651
661
|
console.warn(
|
|
652
662
|
"Git is not available. Husky hooks will activate after running git init."
|
|
@@ -683,7 +693,7 @@ async function createScaffold(options, targetDir, templatesDir) {
|
|
|
683
693
|
if (options.tools.includes("basic")) {
|
|
684
694
|
await runStep(
|
|
685
695
|
"Installing root dependencies",
|
|
686
|
-
async () =>
|
|
696
|
+
async () => runCommandQuiet2("npm", ["install"], projectRoot)
|
|
687
697
|
);
|
|
688
698
|
}
|
|
689
699
|
console.log(accent2(`\u25C6 Project scaffolded at ${projectRoot}`));
|
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
FROM node:24-alpine
|
|
7
7
|
# Installing libvips-dev for sharp Compatibility
|
|
8
|
-
RUN apk update && apk add --no-cache build-base gcc autoconf automake zlib-dev libpng-dev vips-dev > /dev/null 2>&1
|
|
8
|
+
RUN apk update && apk add --no-cache build-base gcc autoconf automake zlib-dev libpng-dev vips-dev curl > /dev/null 2>&1
|
|
9
9
|
ARG NODE_ENV=production
|
|
10
10
|
ENV NODE_ENV=${NODE_ENV}
|
|
11
11
|
|