create-nx-workspace 22.6.4 → 22.6.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-nx-workspace",
3
- "version": "22.6.4",
3
+ "version": "22.6.5",
4
4
  "private": false,
5
5
  "description": "Smart Monorepos · Fast Builds",
6
6
  "repository": {
@@ -30,7 +30,7 @@
30
30
  },
31
31
  "homepage": "https://nx.dev",
32
32
  "dependencies": {
33
- "axios": "1.12.0",
33
+ "axios": "1.15.0",
34
34
  "chalk": "^4.1.0",
35
35
  "enquirer": "~2.3.6",
36
36
  "flat": "^5.0.2",
@@ -195,40 +195,40 @@ const messageOptions = {
195
195
  setupNxCloudV2: [
196
196
  {
197
197
  code: 'connect-to-cloud',
198
- message: 'Connect to Nx Cloud?',
198
+ message: 'Enable remote caching to speed up builds with Nx Cloud?',
199
199
  initial: 0,
200
200
  choices: [
201
201
  { value: 'yes', name: 'Yes' },
202
202
  { value: 'skip', name: 'Skip for now' },
203
203
  { value: 'never', name: chalk.dim("No, don't ask again") },
204
204
  ],
205
- footer: '\nAutomatically fix broken PRs, 70% faster CI: https://nx.dev/nx-cloud',
205
+ footer: '\nFree for small teams. 2-minute setup with GitHub — cache locally and in CI: https://nx.dev/nx-cloud',
206
206
  fallback: undefined,
207
207
  completionMessage: 'platform-setup',
208
208
  },
209
209
  {
210
- code: 'cloud-ab-remote-cache-speed',
211
- message: 'Enable remote caching to speed up builds with Nx Cloud?',
210
+ code: 'cloud-ab-never-rebuild',
211
+ message: 'Never rebuild the same code twice \u2014 enable Nx Cloud?',
212
212
  initial: 0,
213
213
  choices: [
214
214
  { value: 'yes', name: 'Yes' },
215
215
  { value: 'skip', name: 'Skip for now' },
216
216
  { value: 'never', name: chalk.dim("No, don't ask again") },
217
217
  ],
218
- footer: '\nFree for small teams. 2-minute setup with GitHub cache locally and in CI: https://nx.dev/nx-cloud',
218
+ footer: '\nFree for small teams. Remote caching for local dev and CI. 2-minute setup: https://nx.dev/nx-cloud',
219
219
  fallback: undefined,
220
220
  completionMessage: 'platform-setup',
221
221
  },
222
222
  {
223
- code: 'cloud-ab-fast-ci-setup',
224
- message: 'Speed up your CI with Nx Cloud?',
223
+ code: 'cloud-ab-ci-providers-speed',
224
+ message: 'Speed up GitHub Actions, GitLab CI, and more with Nx Cloud?',
225
225
  initial: 0,
226
226
  choices: [
227
227
  { value: 'yes', name: 'Yes' },
228
228
  { value: 'skip', name: 'Skip for now' },
229
229
  { value: 'never', name: chalk.dim("No, don't ask again") },
230
230
  ],
231
- footer: '\n70% faster CI on GitHub, GitLab, and more. Free tier, 2-minute setup: https://nx.dev/nx-cloud',
231
+ footer: '\nFree remote caching and task distribution. 2-minute setup: https://nx.dev/nx-cloud',
232
232
  fallback: undefined,
233
233
  completionMessage: 'platform-setup',
234
234
  },