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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-bloop",
3
- "version": "0.0.5",
3
+ "version": "0.0.6",
4
4
  "description": "Create a new Bloop game",
5
5
  "type": "module",
6
6
  "bin": "./dist/index.js",
@@ -13,8 +13,8 @@
13
13
  "vite": "^7.2.2"
14
14
  },
15
15
  "dependencies": {
16
- "@bloopjs/bloop": "^0.0.78",
16
+ "@bloopjs/bloop": "^0.0.79",
17
17
  "@bloopjs/toodle": "^0.0.100",
18
- "@bloopjs/web": "^0.0.78"
18
+ "@bloopjs/web": "^0.0.79"
19
19
  }
20
20
  }
@@ -15,8 +15,8 @@
15
15
  "vite": "^7.2.2"
16
16
  },
17
17
  "dependencies": {
18
- "@bloopjs/bloop": "^0.0.78",
18
+ "@bloopjs/bloop": "^0.0.79",
19
19
  "@bloopjs/toodle": "^0.1.1",
20
- "@bloopjs/web": "^0.0.78"
20
+ "@bloopjs/web": "^0.0.79"
21
21
  }
22
22
  }