@pure-ds/create-app 0.5.10 → 0.5.12

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/bin/create-app.js CHANGED
@@ -79,6 +79,9 @@ async function main() {
79
79
  await ensureDir(targetDir);
80
80
  }
81
81
 
82
+ await ensureDir(path.join(targetDir, 'public'));
83
+ await ensureDir(path.join(targetDir, 'public', 'assets'));
84
+
82
85
  await writePackageJson(targetDir);
83
86
 
84
87
  const npmCmd = getNpmCommand();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pure-ds/create-app",
3
- "version": "0.5.10",
3
+ "version": "0.5.12",
4
4
  "description": "Create a new Pure Design System app",
5
5
  "type": "module",
6
6
  "bin": {