create-stator 1.3.0 → 1.4.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.
Files changed (2) hide show
  1. package/index.js +6 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -42,13 +42,18 @@ const TEMPLATES = [
42
42
  label: 'With auth',
43
43
  hint: 'accounts, guarded login, roles, session rotation (Node 24+)',
44
44
  },
45
+ {
46
+ value: 'weather',
47
+ label: 'Weather',
48
+ hint: 'live forecasts over SSE, entry-effect data loading, a canvas island',
49
+ },
45
50
  ]
46
51
 
47
52
  /** First-party templates resolve into the monorepo's examples/. */
48
53
  const FIRST_PARTY = 'gh:statorjs/stator/examples'
49
54
  /** Scaffolded apps get a real semver for the framework (the examples
50
55
  * themselves use workspace linking in-repo). Bumped with releases. */
51
- const STATOR_RANGE = '^1.1.0'
56
+ const STATOR_RANGE = '^1.4.0'
52
57
 
53
58
  const { values: flags, positionals } = parseArgs({
54
59
  allowPositionals: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-stator",
3
- "version": "1.3.0",
3
+ "version": "1.4.0",
4
4
  "description": "Scaffold a new Stator app: pnpm create stator my-app",
5
5
  "license": "MIT",
6
6
  "type": "module",