create-fullstack-scaffold 0.4.19 → 0.4.21
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/cli/index.js +4 -7
- package/dist/cli/index.js.map +1 -1
- package/package.json +1 -1
- package/template/admin.html +4 -0
- package/template/merchant.html +4 -0
- package/template/tenant.html +4 -0
- package/template/vite.config.ts +2 -1
package/dist/cli/index.js
CHANGED
|
@@ -1651,12 +1651,7 @@ var MODULE_EXPORTS = {
|
|
|
1651
1651
|
]
|
|
1652
1652
|
},
|
|
1653
1653
|
audit: {
|
|
1654
|
-
namedExports: [
|
|
1655
|
-
"ResourceTypeSchema",
|
|
1656
|
-
"ActionTypeSchema",
|
|
1657
|
-
"AuditLogSchema",
|
|
1658
|
-
"type AuditLogType"
|
|
1659
|
-
]
|
|
1654
|
+
namedExports: ["ResourceTypeSchema", "ActionTypeSchema", "AuditLogSchema", "type AuditLogType"]
|
|
1660
1655
|
},
|
|
1661
1656
|
role: {
|
|
1662
1657
|
namedExports: [
|
|
@@ -3828,7 +3823,9 @@ async function createProject(projectNameOrOptions, useCurrentDir = false, preset
|
|
|
3828
3823
|
installSpinner.succeed(chalk.green("Dependencies installed"));
|
|
3829
3824
|
installSucceeded = true;
|
|
3830
3825
|
} catch {
|
|
3831
|
-
installSpinner.warn(
|
|
3826
|
+
installSpinner.warn(
|
|
3827
|
+
chalk.yellow("Dependency installation failed (you can run npm install manually)")
|
|
3828
|
+
);
|
|
3832
3829
|
}
|
|
3833
3830
|
}
|
|
3834
3831
|
if (installSucceeded) {
|