create-mud 2.0.0-alpha.1.96 → 2.0.0-alpha.1.97
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/cli.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
"use strict";var t=require("create-create-app"),a=require("path");var e={name:"create-mud",version:"2.0.0-alpha.1.
|
|
2
|
+
"use strict";var t=require("create-create-app"),a=require("path");var e={name:"create-mud",version:"2.0.0-alpha.1.97+bd928fc0",description:"Create a new MUD project",license:"MIT",author:"Lattice <mud@lattice.xyz>",bin:"dist/cli.js",files:["dist"],scripts:{build:"pnpm run build:js","build:js":"tsup && ./scripts/copy-templates.sh",clean:"pnpm run clean:js","clean:js":"rimraf dist",dev:"tsup --watch",prepublishOnly:"npm run clean && npm run build",test:"pnpm run test:vanilla && pnpm run test:react","test:react":"dist/cli.js test-project --template react && rimraf test-project","test:vanilla":"dist/cli.js test-project --template vanilla && rimraf test-project"},dependencies:{"create-create-app":"git+https://github.com/holic/create-create-app#74376c59b48a04aabbe94d9cacfe9cb1cecccd63"},devDependencies:{"@types/node":"^18.15.11",tsup:"^6.7.0",typescript:"^4.9.5"},publishConfig:{access:"public",registry:"https://registry.npmjs.org"},gitHead:"bd928fc0f51e4ef299ec75b791fdf49c9eab7bca"};var c=(0,a.resolve)(__dirname,"..","dist","templates");(0,t.create)("create-mud",{templateRoot:c,defaultTemplate:"vanilla",defaultPackageManager:"pnpm",promptForDescription:!1,promptForAuthor:!1,promptForEmail:!1,promptForLicense:!1,promptForTemplate:!0,caveat:({answers:r,packageManager:s})=>`Done! Play in the MUD with \`cd ${r.name}\` and \`${s} run dev\``,extra:{"mud-version":{type:"input",describe:"The version of MUD packages to use, defaults to latest",default:e.version}}});
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"build": "forge clean && forge build",
|
|
8
8
|
"deploy": "pnpm run initialize && mud deploy",
|
|
9
9
|
"deploy:testnet": "pnpm run initialize && mud deploy --profile=lattice-testnet",
|
|
10
|
-
"dev": "pnpm run deploy",
|
|
10
|
+
"dev": "pnpm run deploy --disableTxWait",
|
|
11
11
|
"devnode": "mud devnode",
|
|
12
12
|
"initialize": "pnpm run tablegen && pnpm run worldgen && pnpm run build && pnpm run worldtypes && pnpm run tsgen",
|
|
13
13
|
"lint": "pnpm run prettier && pnpm run solhint",
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"build": "forge clean && forge build",
|
|
8
8
|
"deploy": "pnpm run initialize && mud deploy",
|
|
9
9
|
"deploy:testnet": "pnpm run initialize && mud deploy --profile=lattice-testnet",
|
|
10
|
-
"dev": "pnpm run deploy",
|
|
10
|
+
"dev": "pnpm run deploy --disableTxWait",
|
|
11
11
|
"devnode": "mud devnode",
|
|
12
12
|
"initialize": "pnpm run tablegen && pnpm run worldgen && pnpm run build && pnpm run worldtypes && pnpm run tsgen",
|
|
13
13
|
"lint": "pnpm run prettier && pnpm run solhint",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-mud",
|
|
3
|
-
"version": "2.0.0-alpha.1.
|
|
3
|
+
"version": "2.0.0-alpha.1.97+bd928fc0",
|
|
4
4
|
"description": "Create a new MUD project",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Lattice <mud@lattice.xyz>",
|
|
@@ -31,5 +31,5 @@
|
|
|
31
31
|
"access": "public",
|
|
32
32
|
"registry": "https://registry.npmjs.org"
|
|
33
33
|
},
|
|
34
|
-
"gitHead": "
|
|
34
|
+
"gitHead": "bd928fc0f51e4ef299ec75b791fdf49c9eab7bca"
|
|
35
35
|
}
|