create-cubing-app 0.36.2 → 0.36.3

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.
@@ -105,7 +105,6 @@ async function transferFile(rootedPath, contents) {
105
105
  await writeFile(projectPathed(rootedPath), contents);
106
106
  }
107
107
  await transferFile("script/build.js");
108
- await transferFile("script/dev.js");
109
108
  await transferFile("src/index.html");
110
109
  await transferFile("src/main.ts");
111
110
  await transferFile("src/index.css");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-cubing-app",
3
- "version": "0.36.2",
3
+ "version": "0.36.3",
4
4
  "type": "module",
5
5
  "bin": "./bin/create-cubing-app.js",
6
6
  "scripts": {
package/script/build.js CHANGED
File without changes
@@ -1,4 +0,0 @@
1
- export const COMMON_BUILD_OPTIONS = {
2
- entryRoot: "./src",
3
- esbuildOptions: {chunkNames: "chunks/[name]-[hash]"}
4
- }
package/script/dev.js DELETED
@@ -1,6 +0,0 @@
1
- #!/usr/bin/env node
2
-
3
- import {barelyServe} from "barely-a-dev-server";
4
- import { COMMON_BUILD_OPTIONS } from "./common-build-options.js";
5
-
6
- barelyServe(COMMON_BUILD_OPTIONS);