create-mud 2.0.0-alpha.1.216 → 2.0.0-alpha.1.217

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"),r=require("path");var e={name:"create-mud",version:"2.0.0-alpha.1.216+2908c80c",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:phaser && pnpm run test:threejs","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: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",typescript:"^4.9.5"},publishConfig:{access:"public",registry:"https://registry.npmjs.org"},gitHead:"2908c80c37f09e430991a50ded40d1abcef964f0"};var c=(0,r.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:s,packageManager:a})=>`Done! Play in the MUD with \`cd ${s.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
+ "use strict";var t=require("create-create-app"),r=require("path");var e={name:"create-mud",version:"2.0.0-alpha.1.217+5fda2d7b",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:phaser && pnpm run test:threejs","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: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",typescript:"^4.9.5"},publishConfig:{access:"public",registry:"https://registry.npmjs.org"},gitHead:"5fda2d7bc8a3715fb091bb27c4140bb1ccc60957"};var c=(0,r.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:s,packageManager:a})=>`Done! Play in the MUD with \`cd ${s.name}\` and \`${a} run dev\``,extra:{"mud-version":{type:"input",describe:"The version of MUD packages to use, defaults to latest",default:e.version}}});
@@ -8,7 +8,14 @@ verbosity = 2
8
8
  src = "src"
9
9
  test = "test"
10
10
  out = "out"
11
- allow_paths = ["../../node_modules", "../../../../packages"]
11
+ allow_paths = [
12
+ # pnpm symlinks to the project root's node_modules
13
+ "../../node_modules",
14
+ # template uses linked mud packages from within the mud monorepo
15
+ "../../../../packages",
16
+ # projects created from this template and using linked mud packages
17
+ "../../../mud/packages",
18
+ ]
12
19
  extra_output_files = [
13
20
  "abi",
14
21
  "evm.bytecode"
@@ -8,7 +8,14 @@ verbosity = 2
8
8
  src = "src"
9
9
  test = "test"
10
10
  out = "out"
11
- allow_paths = ["../../node_modules", "../../../../packages"]
11
+ allow_paths = [
12
+ # pnpm symlinks to the project root's node_modules
13
+ "../../node_modules",
14
+ # template uses linked mud packages from within the mud monorepo
15
+ "../../../../packages",
16
+ # projects created from this template and using linked mud packages
17
+ "../../../mud/packages",
18
+ ]
12
19
  extra_output_files = [
13
20
  "abi",
14
21
  "evm.bytecode"
@@ -8,7 +8,14 @@ verbosity = 2
8
8
  src = "src"
9
9
  test = "test"
10
10
  out = "out"
11
- allow_paths = ["../../node_modules", "../../../../packages"]
11
+ allow_paths = [
12
+ # pnpm symlinks to the project root's node_modules
13
+ "../../node_modules",
14
+ # template uses linked mud packages from within the mud monorepo
15
+ "../../../../packages",
16
+ # projects created from this template and using linked mud packages
17
+ "../../../mud/packages",
18
+ ]
12
19
  extra_output_files = [
13
20
  "abi",
14
21
  "evm.bytecode"
@@ -8,7 +8,14 @@ verbosity = 2
8
8
  src = "src"
9
9
  test = "test"
10
10
  out = "out"
11
- allow_paths = ["../../node_modules", "../../../../packages"]
11
+ allow_paths = [
12
+ # pnpm symlinks to the project root's node_modules
13
+ "../../node_modules",
14
+ # template uses linked mud packages from within the mud monorepo
15
+ "../../../../packages",
16
+ # projects created from this template and using linked mud packages
17
+ "../../../mud/packages",
18
+ ]
12
19
  extra_output_files = [
13
20
  "abi",
14
21
  "evm.bytecode"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-mud",
3
- "version": "2.0.0-alpha.1.216+2908c80c",
3
+ "version": "2.0.0-alpha.1.217+5fda2d7b",
4
4
  "description": "Create a new MUD project",
5
5
  "license": "MIT",
6
6
  "author": "Lattice <mud@lattice.xyz>",
@@ -33,5 +33,5 @@
33
33
  "access": "public",
34
34
  "registry": "https://registry.npmjs.org"
35
35
  },
36
- "gitHead": "2908c80c37f09e430991a50ded40d1abcef964f0"
36
+ "gitHead": "5fda2d7bc8a3715fb091bb27c4140bb1ccc60957"
37
37
  }