create-mud 2.1.1-main-64354814ed325cefd1066282944408de7c40b4a7 → 2.1.1-main-5cee9a0ae5a33fb11cda221bc15ad85633a564fd

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
- var t=require("create-create-app"),s=require("path");var e={name:"create-mud",version:"2.1.1-main-64354814ed325cefd1066282944408de7c40b4a7",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 && pnpm run test:react-ecs && pnpm run test:phaser && pnpm run test:threejs","test:ci":"pnpm run test","test:phaser":"dist/cli.js test-project --template phaser && rimraf test-project","test:react":"dist/cli.js test-project --template react && rimraf test-project","test:react-ecs":"dist/cli.js test-project --template react-ecs && rimraf test-project","test:threejs":"dist/cli.js test-project --template threejs && 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"},publishConfig:{access:"public",registry:"https://registry.npmjs.org"}};var c=(0,s.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:a})=>`Done! Play in the MUD with \`cd ${r.name}\` and \`${a} run dev\``,extra:{"mud-version":{type:"input",describe:"The version of MUD packages to use, defaults to latest",default:e.version}}});
2
+ var t=require("create-create-app"),s=require("path");var e={name:"create-mud",version:"2.1.1-main-5cee9a0ae5a33fb11cda221bc15ad85633a564fd",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 && pnpm run test:react-ecs && pnpm run test:phaser && pnpm run test:threejs","test:ci":"pnpm run test","test:phaser":"dist/cli.js test-project --template phaser && rimraf test-project","test:react":"dist/cli.js test-project --template react && rimraf test-project","test:react-ecs":"dist/cli.js test-project --template react-ecs && rimraf test-project","test:threejs":"dist/cli.js test-project --template threejs && 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"},publishConfig:{access:"public",registry:"https://registry.npmjs.org"}};var c=(0,s.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:a})=>`Done! Play in the MUD with \`cd ${r.name}\` and \`${a} run dev\``,extra:{"mud-version":{type:"input",describe:"The version of MUD packages to use, defaults to latest",default:e.version}}});
@@ -6,14 +6,15 @@
6
6
  * starts by default. It is similar to the viem anvil chain
7
7
  * (see https://viem.sh/docs/clients/test.html), but with the
8
8
  * basefee set to zero to avoid transaction fees.
9
- * - latticeTestnet, our public test network.
9
+ * - Redstone, our production blockchain (https://redstone.xyz/)
10
+ * - Garnet, our test blockchain (https://garnetchain.com/))
10
11
  *
11
12
  */
12
13
 
13
14
  import { MUDChain, mudFoundry, redstone, garnet } from "@latticexyz/common/chains";
14
15
 
15
16
  /*
16
- * See https://mud.dev/tutorials/minimal/deploy#run-the-user-interface
17
+ * See https://mud.dev/guides/hello-world/add-chain-client
17
18
  * for instructions on how to add networks.
18
19
  */
19
20
  export const supportedChains: MUDChain[] = [mudFoundry, redstone, garnet];
@@ -6,14 +6,15 @@
6
6
  * starts by default. It is similar to the viem anvil chain
7
7
  * (see https://viem.sh/docs/clients/test.html), but with the
8
8
  * basefee set to zero to avoid transaction fees.
9
- * - latticeTestnet, our public test network.
9
+ * - Redstone, our production blockchain (https://redstone.xyz/)
10
+ * - Garnet, our test blockchain (https://garnetchain.com/))
10
11
  *
11
12
  */
12
13
 
13
14
  import { MUDChain, mudFoundry, redstone, garnet } from "@latticexyz/common/chains";
14
15
 
15
16
  /*
16
- * See https://mud.dev/tutorials/minimal/deploy#run-the-user-interface
17
+ * See https://mud.dev/guides/hello-world/add-chain-client
17
18
  * for instructions on how to add networks.
18
19
  */
19
20
  export const supportedChains: MUDChain[] = [mudFoundry, redstone, garnet];
@@ -6,14 +6,15 @@
6
6
  * starts by default. It is similar to the viem anvil chain
7
7
  * (see https://viem.sh/docs/clients/test.html), but with the
8
8
  * basefee set to zero to avoid transaction fees.
9
- * - latticeTestnet, our public test network.
9
+ * - Redstone, our production blockchain (https://redstone.xyz/)
10
+ * - Garnet, our test blockchain (https://garnetchain.com/))
10
11
  *
11
12
  */
12
13
 
13
14
  import { MUDChain, mudFoundry, redstone, garnet } from "@latticexyz/common/chains";
14
15
 
15
16
  /*
16
- * See https://mud.dev/tutorials/minimal/deploy#run-the-user-interface
17
+ * See https://mud.dev/guides/hello-world/add-chain-client
17
18
  * for instructions on how to add networks.
18
19
  */
19
20
  export const supportedChains: MUDChain[] = [mudFoundry, redstone, garnet];
@@ -6,14 +6,15 @@
6
6
  * starts by default. It is similar to the viem anvil chain
7
7
  * (see https://viem.sh/docs/clients/test.html), but with the
8
8
  * basefee set to zero to avoid transaction fees.
9
- * - latticeTestnet, our public test network.
9
+ * - Redstone, our production blockchain (https://redstone.xyz/)
10
+ * - Garnet, our test blockchain (https://garnetchain.com/))
10
11
  *
11
12
  */
12
13
 
13
14
  import { MUDChain, mudFoundry, redstone, garnet } from "@latticexyz/common/chains";
14
15
 
15
16
  /*
16
- * See https://mud.dev/tutorials/minimal/deploy#run-the-user-interface
17
+ * See https://mud.dev/guides/hello-world/add-chain-client
17
18
  * for instructions on how to add networks.
18
19
  */
19
20
  export const supportedChains: MUDChain[] = [mudFoundry, redstone, garnet];
@@ -6,14 +6,15 @@
6
6
  * starts by default. It is similar to the viem anvil chain
7
7
  * (see https://viem.sh/docs/clients/test.html), but with the
8
8
  * basefee set to zero to avoid transaction fees.
9
- * - latticeTestnet, our public test network.
9
+ * - Redstone, our production blockchain (https://redstone.xyz/)
10
+ * - Garnet, our test blockchain (https://garnetchain.com/))
10
11
  *
11
12
  */
12
13
 
13
14
  import { MUDChain, mudFoundry, redstone, garnet } from "@latticexyz/common/chains";
14
15
 
15
16
  /*
16
- * See https://mud.dev/tutorials/minimal/deploy#run-the-user-interface
17
+ * See https://mud.dev/guides/hello-world/add-chain-client
17
18
  * for instructions on how to add networks.
18
19
  */
19
20
  export const supportedChains: MUDChain[] = [mudFoundry, redstone, garnet];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-mud",
3
- "version": "2.1.1-main-64354814ed325cefd1066282944408de7c40b4a7",
3
+ "version": "2.1.1-main-5cee9a0ae5a33fb11cda221bc15ad85633a564fd",
4
4
  "description": "Create a new MUD project",
5
5
  "license": "MIT",
6
6
  "author": "Lattice <mud@lattice.xyz>",