create-cubing-app 0.35.6-rc6 → 0.35.6-rc7

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.
@@ -32,9 +32,7 @@ await execPromise("npm install --save-dev barely-a-dev-server");
32
32
 
33
33
  await mkdir("./src", { recursive: true });
34
34
  async function transferFile(rootedPath) {
35
- const indexHTML = await readFile(
36
- new URL(`../${rootedPath}`, import.meta.url),
37
- );
35
+ const indexHTML = await readFile(new URL(`./${rootedPath}`, import.meta.url));
38
36
  await writeFile(`./${rootedPath}`, indexHTML);
39
37
  }
40
38
  await transferFile("src/index.html");
File without changes
File without changes
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-cubing-app",
3
- "version": "0.35.6-rc6",
3
+ "version": "0.35.6-rc7",
4
4
  "type": "module",
5
5
  "bin": "./bin/create-cubing-app.js",
6
6
  "scripts": {