create-bloop 0.0.5 → 0.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.
package/dist/index.js
CHANGED
|
@@ -4990,7 +4990,7 @@ async function main() {
|
|
|
4990
4990
|
}
|
|
4991
4991
|
console.log(`
|
|
4992
4992
|
Creating ${projectName}...`);
|
|
4993
|
-
const templatesDir = path.join(DIRNAME, "templates", template);
|
|
4993
|
+
const templatesDir = path.join(DIRNAME, "..", "templates", template);
|
|
4994
4994
|
if (!fs.existsSync(templatesDir)) {
|
|
4995
4995
|
console.error(`Error: Template "${template}" not found.`);
|
|
4996
4996
|
console.error(`Expected at: ${templatesDir}`);
|
package/package.json
CHANGED