@expo/cli 55.0.0-canary-20260121-a63c0dd → 55.0.0

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/build/bin/cli CHANGED
@@ -123,7 +123,7 @@ const args = (0, _arg().default)({
123
123
  });
124
124
  if (args['--version']) {
125
125
  // Version is added in the build script.
126
- console.log("55.0.0-canary-20260121-a63c0dd");
126
+ console.log("55.0.0");
127
127
  process.exit(0);
128
128
  }
129
129
  if (args['--non-interactive']) {
@@ -64,6 +64,7 @@ class Bonjour {
64
64
  this.port = port;
65
65
  }
66
66
  async announceAsync({ exp = (0, _config().getConfig)(this.projectRoot).exp }) {
67
+ var _exp_name, _exp_slug;
67
68
  if (_env.env.CI || !_env.env.EXPO_UNSTABLE_BONJOUR) {
68
69
  return;
69
70
  } else if (!this.port) {
@@ -81,7 +82,8 @@ class Bonjour {
81
82
  hostname: exp.slug,
82
83
  port: this.port,
83
84
  txt: {
84
- slug: exp.slug
85
+ name: (_exp_name = exp.name) == null ? void 0 : _exp_name.slice(0, 255),
86
+ slug: (_exp_slug = exp.slug) == null ? void 0 : _exp_slug.slice(0, 255)
85
87
  }
86
88
  });
87
89
  }
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../../src/start/server/Bonjour.ts"],"sourcesContent":["import { ExpoConfig, getConfig } from '@expo/config';\n\nimport { env } from '../../utils/env';\n\nconst debug = require('debug')('expo:start:server:bonjour') as typeof console.log;\n\nexport class Bonjour {\n private stopAdvertising?: () => Promise<void>;\n\n constructor(\n /** Project root directory */\n private projectRoot: string,\n /** Port to advertise, if any */\n private port: number | undefined\n ) {}\n\n public async announceAsync({\n exp = getConfig(this.projectRoot).exp,\n }: {\n exp?: Pick<ExpoConfig, 'name' | 'description' | 'slug' | 'primaryColor'>;\n }) {\n if (env.CI || !env.EXPO_UNSTABLE_BONJOUR) {\n return;\n } else if (!this.port) {\n return;\n }\n\n const dnssd: typeof import('dnssd-advertise') = await import('dnssd-advertise');\n if (this.stopAdvertising) {\n await this.stopAdvertising();\n }\n\n debug('Started Bonjour service');\n this.stopAdvertising = dnssd.advertise({\n name: `${exp.name}`,\n type: 'expo',\n protocol: 'tcp',\n hostname: exp.slug,\n port: this.port,\n txt: {\n slug: exp.slug,\n },\n });\n }\n\n public async closeAsync(): Promise<boolean> {\n if (!this.stopAdvertising) {\n return false;\n } else {\n debug('Stopped Bonjour service');\n await this.stopAdvertising?.();\n this.stopAdvertising = undefined;\n return true;\n }\n }\n}\n"],"names":["Bonjour","debug","require","constructor","projectRoot","port","announceAsync","exp","getConfig","env","CI","EXPO_UNSTABLE_BONJOUR","dnssd","stopAdvertising","advertise","name","type","protocol","hostname","slug","txt","closeAsync","undefined"],"mappings":";;;;+BAMaA;;;eAAAA;;;;yBANyB;;;;;;qBAElB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEpB,MAAMC,QAAQC,QAAQ,SAAS;AAExB,MAAMF;IAGXG,YACE,2BAA2B,GAC3B,AAAQC,WAAmB,EAC3B,8BAA8B,GAC9B,AAAQC,IAAwB,CAChC;aAHQD,cAAAA;aAEAC,OAAAA;IACP;IAEH,MAAaC,cAAc,EACzBC,MAAMC,IAAAA,mBAAS,EAAC,IAAI,CAACJ,WAAW,EAAEG,GAAG,EAGtC,EAAE;QACD,IAAIE,QAAG,CAACC,EAAE,IAAI,CAACD,QAAG,CAACE,qBAAqB,EAAE;YACxC;QACF,OAAO,IAAI,CAAC,IAAI,CAACN,IAAI,EAAE;YACrB;QACF;QAEA,MAAMO,QAA0C,MAAM,mEAAA,QAAO;QAC7D,IAAI,IAAI,CAACC,eAAe,EAAE;YACxB,MAAM,IAAI,CAACA,eAAe;QAC5B;QAEAZ,MAAM;QACN,IAAI,CAACY,eAAe,GAAGD,MAAME,SAAS,CAAC;YACrCC,MAAM,GAAGR,IAAIQ,IAAI,EAAE;YACnBC,MAAM;YACNC,UAAU;YACVC,UAAUX,IAAIY,IAAI;YAClBd,MAAM,IAAI,CAACA,IAAI;YACfe,KAAK;gBACHD,MAAMZ,IAAIY,IAAI;YAChB;QACF;IACF;IAEA,MAAaE,aAA+B;QAC1C,IAAI,CAAC,IAAI,CAACR,eAAe,EAAE;YACzB,OAAO;QACT,OAAO;YACLZ,MAAM;YACN,OAAM,IAAI,CAACY,eAAe,oBAApB,IAAI,CAACA,eAAe,MAApB,IAAI;YACV,IAAI,CAACA,eAAe,GAAGS;YACvB,OAAO;QACT;IACF;AACF"}
1
+ {"version":3,"sources":["../../../../src/start/server/Bonjour.ts"],"sourcesContent":["import { ExpoConfig, getConfig } from '@expo/config';\n\nimport { env } from '../../utils/env';\n\nconst debug = require('debug')('expo:start:server:bonjour') as typeof console.log;\n\nexport class Bonjour {\n private stopAdvertising?: () => Promise<void>;\n\n constructor(\n /** Project root directory */\n private projectRoot: string,\n /** Port to advertise, if any */\n private port: number | undefined\n ) {}\n\n public async announceAsync({\n exp = getConfig(this.projectRoot).exp,\n }: {\n exp?: Pick<ExpoConfig, 'name' | 'description' | 'slug' | 'primaryColor'>;\n }) {\n if (env.CI || !env.EXPO_UNSTABLE_BONJOUR) {\n return;\n } else if (!this.port) {\n return;\n }\n\n const dnssd: typeof import('dnssd-advertise') = await import('dnssd-advertise');\n if (this.stopAdvertising) {\n await this.stopAdvertising();\n }\n\n debug('Started Bonjour service');\n this.stopAdvertising = dnssd.advertise({\n name: `${exp.name}`,\n type: 'expo',\n protocol: 'tcp',\n hostname: exp.slug,\n port: this.port,\n txt: {\n name: exp.name?.slice(0, 255),\n slug: exp.slug?.slice(0, 255),\n },\n });\n }\n\n public async closeAsync(): Promise<boolean> {\n if (!this.stopAdvertising) {\n return false;\n } else {\n debug('Stopped Bonjour service');\n await this.stopAdvertising?.();\n this.stopAdvertising = undefined;\n return true;\n }\n }\n}\n"],"names":["Bonjour","debug","require","constructor","projectRoot","port","announceAsync","exp","getConfig","env","CI","EXPO_UNSTABLE_BONJOUR","dnssd","stopAdvertising","advertise","name","type","protocol","hostname","slug","txt","slice","closeAsync","undefined"],"mappings":";;;;+BAMaA;;;eAAAA;;;;yBANyB;;;;;;qBAElB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEpB,MAAMC,QAAQC,QAAQ,SAAS;AAExB,MAAMF;IAGXG,YACE,2BAA2B,GAC3B,AAAQC,WAAmB,EAC3B,8BAA8B,GAC9B,AAAQC,IAAwB,CAChC;aAHQD,cAAAA;aAEAC,OAAAA;IACP;IAEH,MAAaC,cAAc,EACzBC,MAAMC,IAAAA,mBAAS,EAAC,IAAI,CAACJ,WAAW,EAAEG,GAAG,EAGtC,EAAE;YAoBSA,WACAA;QApBV,IAAIE,QAAG,CAACC,EAAE,IAAI,CAACD,QAAG,CAACE,qBAAqB,EAAE;YACxC;QACF,OAAO,IAAI,CAAC,IAAI,CAACN,IAAI,EAAE;YACrB;QACF;QAEA,MAAMO,QAA0C,MAAM,mEAAA,QAAO;QAC7D,IAAI,IAAI,CAACC,eAAe,EAAE;YACxB,MAAM,IAAI,CAACA,eAAe;QAC5B;QAEAZ,MAAM;QACN,IAAI,CAACY,eAAe,GAAGD,MAAME,SAAS,CAAC;YACrCC,MAAM,GAAGR,IAAIQ,IAAI,EAAE;YACnBC,MAAM;YACNC,UAAU;YACVC,UAAUX,IAAIY,IAAI;YAClBd,MAAM,IAAI,CAACA,IAAI;YACfe,KAAK;gBACHL,IAAI,GAAER,YAAAA,IAAIQ,IAAI,qBAARR,UAAUc,KAAK,CAAC,GAAG;gBACzBF,IAAI,GAAEZ,YAAAA,IAAIY,IAAI,qBAARZ,UAAUc,KAAK,CAAC,GAAG;YAC3B;QACF;IACF;IAEA,MAAaC,aAA+B;QAC1C,IAAI,CAAC,IAAI,CAACT,eAAe,EAAE;YACzB,OAAO;QACT,OAAO;YACLZ,MAAM;YACN,OAAM,IAAI,CAACY,eAAe,oBAApB,IAAI,CAACA,eAAe,MAApB,IAAI;YACV,IAAI,CAACA,eAAe,GAAGU;YACvB,OAAO;QACT;IACF;AACF"}
@@ -33,7 +33,7 @@ class FetchClient {
33
33
  this.headers = {
34
34
  accept: 'application/json',
35
35
  'content-type': 'application/json',
36
- 'user-agent': `expo-cli/${"55.0.0-canary-20260121-a63c0dd"}`,
36
+ 'user-agent': `expo-cli/${"55.0.0"}`,
37
37
  authorization: 'Basic ' + _nodebuffer().Buffer.from(`${target}:`).toString('base64')
38
38
  };
39
39
  }
@@ -83,7 +83,7 @@ function createContext() {
83
83
  cpu: summarizeCpuInfo(),
84
84
  app: {
85
85
  name: 'expo/cli',
86
- version: "55.0.0-canary-20260121-a63c0dd"
86
+ version: "55.0.0"
87
87
  },
88
88
  ci: _ciinfo().isCI ? {
89
89
  name: _ciinfo().name,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@expo/cli",
3
- "version": "55.0.0-canary-20260121-a63c0dd",
3
+ "version": "55.0.0",
4
4
  "description": "The Expo CLI",
5
5
  "main": "build/bin/cli",
6
6
  "bin": {
@@ -43,21 +43,21 @@
43
43
  "dependencies": {
44
44
  "@0no-co/graphql.web": "^1.0.8",
45
45
  "@expo/code-signing-certificates": "^0.0.6",
46
- "@expo/config": "12.0.14-canary-20260121-a63c0dd",
47
- "@expo/config-plugins": "54.1.0-canary-20260121-a63c0dd",
46
+ "@expo/config": "~55.0.0",
47
+ "@expo/config-plugins": "~55.0.0",
48
48
  "@expo/devcert": "^1.2.1",
49
- "@expo/env": "2.0.9-canary-20260121-a63c0dd",
50
- "@expo/image-utils": "0.8.9-canary-20260121-a63c0dd",
51
- "@expo/json-file": "10.0.9-canary-20260121-a63c0dd",
49
+ "@expo/env": "~2.0.9",
50
+ "@expo/image-utils": "^0.8.9",
51
+ "@expo/json-file": "^10.0.9",
52
52
  "@expo/metro": "~54.2.0",
53
- "@expo/metro-config": "54.1.0-canary-20260121-a63c0dd",
54
- "@expo/osascript": "2.3.9-canary-20260121-a63c0dd",
55
- "@expo/package-manager": "1.9.11-canary-20260121-a63c0dd",
56
- "@expo/plist": "0.4.9-canary-20260121-a63c0dd",
57
- "@expo/prebuild-config": "55.0.0-canary-20260121-a63c0dd",
58
- "@expo/router-server": "0.2.0-canary-20260121-a63c0dd",
59
- "@expo/log-box": "0.0.13-canary-20260121-a63c0dd",
60
- "@expo/schema-utils": "0.1.9-canary-20260121-a63c0dd",
53
+ "@expo/metro-config": "~55.0.0",
54
+ "@expo/osascript": "^2.4.0",
55
+ "@expo/package-manager": "^1.10.0",
56
+ "@expo/plist": "^0.5.0",
57
+ "@expo/prebuild-config": "^55.0.0",
58
+ "@expo/router-server": "^55.0.0",
59
+ "@expo/log-box": "55.0.0",
60
+ "@expo/schema-utils": "^55.0.0",
61
61
  "@expo/spawn-async": "^1.7.2",
62
62
  "@expo/ws-tunnel": "^1.0.1",
63
63
  "@expo/xcpretty": "^4.3.0",
@@ -76,7 +76,7 @@
76
76
  "debug": "^4.3.4",
77
77
  "dnssd-advertise": "^1.0.8",
78
78
  "env-editor": "^0.4.1",
79
- "expo-server": "1.1.0-canary-20260121-a63c0dd",
79
+ "expo-server": "^55.0.0",
80
80
  "freeport-async": "^2.0.0",
81
81
  "getenv": "^2.0.0",
82
82
  "glob": "^13.0.0",
@@ -113,8 +113,8 @@
113
113
  ]
114
114
  },
115
115
  "peerDependencies": {
116
- "expo": "55.0.0-canary-20260121-a63c0dd",
117
- "expo-router": "7.0.0-canary-20260121-a63c0dd",
116
+ "expo": "*",
117
+ "expo-router": "*",
118
118
  "react-native": "*"
119
119
  },
120
120
  "peerDependenciesMeta": {
@@ -159,7 +159,7 @@
159
159
  "@types/ws": "^8.5.4",
160
160
  "devtools-protocol": "^0.0.1113120",
161
161
  "expo-atlas": "^0.4.1",
162
- "expo-module-scripts": "5.1.0-canary-20260121-a63c0dd",
162
+ "expo-module-scripts": "^55.0.0",
163
163
  "find-process": "^1.4.7",
164
164
  "jest-runner-tsd": "^6.0.0",
165
165
  "klaw-sync": "^6.0.0",
@@ -171,5 +171,6 @@
171
171
  "taskr": "^1.1.0",
172
172
  "tree-kill": "^1.2.2",
173
173
  "tsd": "^0.28.1"
174
- }
174
+ },
175
+ "gitHead": "aea645dd881bbf8e396d7eff6f5c0b730176f80c"
175
176
  }