create-bloop 0.0.1 → 0.0.2
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
|
@@ -4940,17 +4940,17 @@ var require_prompts3 = __commonJS((exports, module) => {
|
|
|
4940
4940
|
var import_prompts = __toESM(require_prompts3(), 1);
|
|
4941
4941
|
import fs from "node:fs";
|
|
4942
4942
|
import path from "node:path";
|
|
4943
|
-
var __dirname = "/
|
|
4943
|
+
var __dirname = "/home/runner/work/bloop/bloop/packages/create-bloop";
|
|
4944
4944
|
var templates = [
|
|
4945
4945
|
{
|
|
4946
4946
|
name: "hello",
|
|
4947
|
-
title: "
|
|
4948
|
-
description: "
|
|
4947
|
+
title: "Empty Project",
|
|
4948
|
+
description: "An empty project with Bloop setup"
|
|
4949
4949
|
},
|
|
4950
4950
|
{
|
|
4951
4951
|
name: "mario",
|
|
4952
|
-
title: "Rollback
|
|
4953
|
-
description: "Mario-style platformer with multiplayer
|
|
4952
|
+
title: "Multiplayer Game with Rollback Netcode",
|
|
4953
|
+
description: "Mario-style versus platformer with online multiplayer, see demo at https://trybloop.gg/nu11/mario"
|
|
4954
4954
|
}
|
|
4955
4955
|
];
|
|
4956
4956
|
async function main() {
|
|
@@ -4961,7 +4961,7 @@ async function main() {
|
|
|
4961
4961
|
type: "text",
|
|
4962
4962
|
name: "projectName",
|
|
4963
4963
|
message: "Project name:",
|
|
4964
|
-
initial: "
|
|
4964
|
+
initial: "hellobloop"
|
|
4965
4965
|
});
|
|
4966
4966
|
projectName = response.projectName;
|
|
4967
4967
|
if (!projectName) {
|
package/package.json
CHANGED
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-bloop",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.2",
|
|
4
4
|
"description": "Create a new Bloop game",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": "./dist/index.js",
|
|
7
|
-
"files": [
|
|
7
|
+
"files": [
|
|
8
|
+
"dist",
|
|
9
|
+
"templates"
|
|
10
|
+
],
|
|
8
11
|
"scripts": {
|
|
9
12
|
"build": "bun build index.ts --outdir=dist --target=node"
|
|
10
13
|
},
|
|
@@ -12,7 +15,12 @@
|
|
|
12
15
|
"type": "git",
|
|
13
16
|
"url": "https://github.com/bloopgames/bloop"
|
|
14
17
|
},
|
|
15
|
-
"keywords": [
|
|
18
|
+
"keywords": [
|
|
19
|
+
"bloop",
|
|
20
|
+
"game",
|
|
21
|
+
"scaffold",
|
|
22
|
+
"create"
|
|
23
|
+
],
|
|
16
24
|
"license": "MIT",
|
|
17
25
|
"dependencies": {
|
|
18
26
|
"prompts": "^2.4.2"
|
|
@@ -20,4 +28,4 @@
|
|
|
20
28
|
"devDependencies": {
|
|
21
29
|
"@types/prompts": "^2.4.9"
|
|
22
30
|
}
|
|
23
|
-
}
|
|
31
|
+
}
|