sandstone-cli 2.2.1 → 2.3.1

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/bun.lock CHANGED
@@ -31,7 +31,7 @@
31
31
  "@types/semver": "^7.5.3",
32
32
  "bun-types": "^1.3.9",
33
33
  "node-pty": "^1.1.0",
34
- "sandstone": "^1.0.0-beta.1",
34
+ "sandstone": "^1.0.0-beta.3",
35
35
  "typescript": "^5.2.2",
36
36
  },
37
37
  },
@@ -370,7 +370,7 @@
370
370
 
371
371
  "safer-buffer": ["safer-buffer@2.1.2", "", {}, "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="],
372
372
 
373
- "sandstone": ["sandstone@1.0.0-beta.1", "", { "dependencies": { "@sinclair/typebox": "^0.31.21", "@smithed-mc/data-types": "^0.1.2", "@types/nearley": "^2.11.5", "@types/node": "24", "@typescript/analyze-trace": "^0.4.0", "adm-zip": "^0.5.10", "fs-extra": "^11.1.1", "lodash": "^4.17.21", "nanoid": "^3.3.6", "nearley": "^2.20.1", "node-fetch": "^3.3.2", "prismarine-nbt": "^2.2.1", "semver": "^7.5.4" } }, "sha512-1Gcr/reRfVqiTqW4Lp/bV0pCxlh26bXmN/fgM0i+1O4+ztWgxqtAkw0E1DQwk+HDKkjwN9cwJ+pVquGGeioB2Q=="],
373
+ "sandstone": ["sandstone@1.0.0-beta.3", "", { "dependencies": { "@sinclair/typebox": "^0.31.21", "@smithed-mc/data-types": "^0.1.2", "@types/nearley": "^2.11.5", "@types/node": "24", "@typescript/analyze-trace": "^0.4.0", "adm-zip": "^0.5.10", "fs-extra": "^11.1.1", "lodash": "^4.17.21", "nanoid": "^3.3.6", "nearley": "^2.20.1", "node-fetch": "^3.3.2", "prismarine-nbt": "^2.2.1", "semver": "^7.5.4" } }, "sha512-aQNz7uxBQW+B5mQshFiFnTt81ecc77KIih7jDvryM0kdhqtOuF5hwxR7vi3RXvTWkrLVGpnW/D3qClj3ufD0FQ=="],
374
374
 
375
375
  "scheduler": ["scheduler@0.27.0", "", {}, "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q=="],
376
376
 
package/lib/create.js CHANGED
@@ -5680,7 +5680,7 @@ var {
5680
5680
  import figlet from "figlet";
5681
5681
 
5682
5682
  // src/version.ts
5683
- var CLI_VERSION = "2.2.1";
5683
+ var CLI_VERSION = "2.3.1";
5684
5684
 
5685
5685
  // src/commands/create.ts
5686
5686
  var import_semver = __toESM(require_semver2(), 1);
@@ -6789,7 +6789,7 @@ async function createCommand2(_project, opts) {
6789
6789
  default: false
6790
6790
  }) === true ? "library" : "pack";
6791
6791
  const sv = (v) => new import_semver.SemVer(v);
6792
- const versions = [[sv("1.0.0-beta.1"), sv(CLI_VERSION)]];
6792
+ const versions = [[sv("1.0.0-beta.2"), sv(CLI_VERSION)]];
6793
6793
  const version = await select({
6794
6794
  message: "Which version of Sandstone do you want to use? These are the only supported versions for new projects.",
6795
6795
  choices: versions.map((v) => {