sandstone-cli 2.3.1 → 2.3.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/lib/create.js +2 -2
- package/lib/index.js +2 -2
- package/package.json +1 -1
- package/src/version.ts +1 -1
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.3.
|
|
5683
|
+
var CLI_VERSION = "2.3.2";
|
|
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.
|
|
6792
|
+
const versions = [[sv("1.0.0-beta.3"), 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) => {
|
package/lib/index.js
CHANGED
|
@@ -22574,7 +22574,7 @@ var {
|
|
|
22574
22574
|
import figlet from "figlet";
|
|
22575
22575
|
|
|
22576
22576
|
// src/version.ts
|
|
22577
|
-
var CLI_VERSION = "2.3.
|
|
22577
|
+
var CLI_VERSION = "2.3.2";
|
|
22578
22578
|
|
|
22579
22579
|
// src/commands/build/index.ts
|
|
22580
22580
|
var import_fs_extra4 = __toESM(require_lib(), 1);
|
|
@@ -24496,7 +24496,7 @@ async function createCommand2(_project, opts) {
|
|
|
24496
24496
|
default: false
|
|
24497
24497
|
}) === true ? "library" : "pack";
|
|
24498
24498
|
const sv = (v) => new import_semver.SemVer(v);
|
|
24499
|
-
const versions = [[sv("1.0.0-beta.
|
|
24499
|
+
const versions = [[sv("1.0.0-beta.3"), sv(CLI_VERSION)]];
|
|
24500
24500
|
const version = await select({
|
|
24501
24501
|
message: "Which version of Sandstone do you want to use? These are the only supported versions for new projects.",
|
|
24502
24502
|
choices: versions.map((v) => {
|
package/package.json
CHANGED
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const CLI_VERSION = '2.3.
|
|
1
|
+
export const CLI_VERSION = '2.3.2'
|