@uniformdev/cli 18.29.0 → 18.30.1-alpha.15

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.
Files changed (2) hide show
  1. package/dist/index.mjs +14 -4
  2. package/package.json +7 -7
package/dist/index.mjs CHANGED
@@ -3225,7 +3225,7 @@ import { PostHog } from "posthog-node";
3225
3225
  // package.json
3226
3226
  var package_default = {
3227
3227
  name: "@uniformdev/cli",
3228
- version: "18.29.0",
3228
+ version: "18.30.0",
3229
3229
  description: "Uniform command line interface tool",
3230
3230
  license: "SEE LICENSE IN LICENSE.txt",
3231
3231
  main: "./cli.js",
@@ -3271,8 +3271,8 @@ var package_default = {
3271
3271
  "@types/js-yaml": "4.0.5",
3272
3272
  "@types/jsonwebtoken": "9.0.1",
3273
3273
  "@types/lodash.isequalwith": "4.4.7",
3274
- "@types/node": "18.15.5",
3275
- "@types/yargs": "17.0.23",
3274
+ "@types/node": "18.15.10",
3275
+ "@types/yargs": "17.0.24",
3276
3276
  "p-limit": "4.0.0"
3277
3277
  },
3278
3278
  bin: {
@@ -3827,7 +3827,7 @@ var query = gql`
3827
3827
  var schema = z2.object({
3828
3828
  info: z2.object({
3829
3829
  name: z2.string().min(1),
3830
- email_address: z2.string().min(1),
3830
+ email_address: z2.string().min(1).nullable(),
3831
3831
  teams: z2.array(
3832
3832
  z2.object({
3833
3833
  team: z2.object({
@@ -4009,6 +4009,16 @@ async function newHandler({
4009
4009
  done = await spin("Installing Canvas...");
4010
4010
  await uniformClient.installCanvas(projectId);
4011
4011
  await done();
4012
+ if (githubUri.endsWith("commerce-starter")) {
4013
+ const stableFakecommerceId = "fakecommerce-d04dcf12-f811-401d-add8-1fb81cfdb8a5";
4014
+ const canaryFakecommerceId = "fakecommerce-f94cf199-7ea4-46ce-ae8b-825668bb79bc";
4015
+ done = await spin("Installing Fake Commerce...");
4016
+ await uniformClient.installIntegration({
4017
+ projectId,
4018
+ type: apiHost.includes("canary") ? canaryFakecommerceId : stableFakecommerceId
4019
+ });
4020
+ await done();
4021
+ }
4012
4022
  const cloneStartTimestamp = Date.now();
4013
4023
  const { runNpmInstall } = await cloneStarter({
4014
4024
  githubPath: githubUri,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniformdev/cli",
3
- "version": "18.29.0",
3
+ "version": "18.30.1-alpha.15+d985383e0",
4
4
  "description": "Uniform command line interface tool",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "main": "./cli.js",
@@ -16,9 +16,9 @@
16
16
  "format": "prettier --write \"src/**/*.{js,ts,tsx}\""
17
17
  },
18
18
  "dependencies": {
19
- "@uniformdev/canvas": "18.29.0",
20
- "@uniformdev/context": "18.29.0",
21
- "@uniformdev/project-map": "18.29.0",
19
+ "@uniformdev/canvas": "18.30.1-alpha.15+d985383e0",
20
+ "@uniformdev/context": "18.30.1-alpha.15+d985383e0",
21
+ "@uniformdev/project-map": "18.30.1-alpha.15+d985383e0",
22
22
  "chalk": "^5.2.0",
23
23
  "diff": "^5.0.0",
24
24
  "dotenv": "^16.0.3",
@@ -46,8 +46,8 @@
46
46
  "@types/js-yaml": "4.0.5",
47
47
  "@types/jsonwebtoken": "9.0.1",
48
48
  "@types/lodash.isequalwith": "4.4.7",
49
- "@types/node": "18.15.5",
50
- "@types/yargs": "17.0.23",
49
+ "@types/node": "18.15.10",
50
+ "@types/yargs": "17.0.24",
51
51
  "p-limit": "4.0.0"
52
52
  },
53
53
  "bin": {
@@ -59,5 +59,5 @@
59
59
  "publishConfig": {
60
60
  "access": "public"
61
61
  },
62
- "gitHead": "6f1bd112312b3a261b71cd94ea3e74151fc5b0d2"
62
+ "gitHead": "d985383e09e6f498197945f05ab5a43e0bc61eb2"
63
63
  }