@smi-digital/create-smi-app 1.0.5 → 1.0.6

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.
Files changed (2) hide show
  1. package/dist/index.js +4 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -580,6 +580,10 @@ function getAppTargets(options) {
580
580
  ];
581
581
  }
582
582
  async function createProjectStructure(options, projectRoot) {
583
+ if (options.projectType === "singleProject" && "framework" in options && asFramework(options.framework) === "none") {
584
+ await mkdir2(join5(projectRoot, "src"), { recursive: true });
585
+ return;
586
+ }
583
587
  if (options.projectType !== "monorepo") {
584
588
  return;
585
589
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smi-digital/create-smi-app",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "bin": {