create-sonicjs 2.2.0 → 2.3.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-sonicjs",
3
- "version": "2.2.0",
3
+ "version": "2.3.0",
4
4
  "description": "Create a new SonicJS application with zero configuration",
5
5
  "type": "module",
6
6
  "bin": {
package/src/cli.js CHANGED
@@ -418,7 +418,7 @@ async function copyTemplate(templateName, targetDir, options) {
418
418
 
419
419
  // Add @sonicjs-cms/core dependency
420
420
  packageJson.dependencies = {
421
- '@sonicjs-cms/core': '^2.2.0',
421
+ '@sonicjs-cms/core': '^2.3.0',
422
422
  ...packageJson.dependencies
423
423
  }
424
424
 
@@ -26,7 +26,7 @@ export function displayTelemetryNotice() {
26
26
  console.log(kleur.dim('To disable telemetry, set:'))
27
27
  console.log(kleur.cyan(' export SONICJS_TELEMETRY=false'))
28
28
  console.log()
29
- console.log(kleur.dim('Learn more: https://docs.sonicjs.com/telemetry'))
29
+ console.log(kleur.dim('Learn more: https://sonicjs.com/telemetry'))
30
30
  console.log()
31
31
  console.log(kleur.dim('━'.repeat(60)))
32
32
  console.log()
package/src/telemetry.js CHANGED
@@ -7,7 +7,7 @@
7
7
  * - Opt-out via environment variable
8
8
  */
9
9
 
10
- import { randomUUID } from 'crypto'
10
+ import { randomUUID } from 'node:crypto'
11
11
  import os from 'os'
12
12
  import fs from 'fs-extra'
13
13
  import path from 'path'