@stravigor/create 0.5.2 → 0.5.3

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.5.3
4
+
5
+ ### Added
6
+
7
+ - **Web template**: `resources/islands/setup.ts` stub for shared Vue app configuration (plugin installation, global provides)
8
+
3
9
  ## 0.1.1
4
10
 
5
11
  ### Changed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stravigor/create",
3
- "version": "0.5.2",
3
+ "version": "0.5.3",
4
4
  "type": "module",
5
5
  "description": "Scaffold a new Strav application",
6
6
  "license": "MIT",
@@ -0,0 +1,11 @@
1
+ import type { App } from 'vue'
2
+
3
+ export default function setup(app: App) {
4
+ // Install plugins, provide globals, or register components here.
5
+ // This runs once before any island is mounted.
6
+ //
7
+ // Examples:
8
+ // app.use(pinia)
9
+ // app.provide('api', apiClient)
10
+ // app.component('Icon', Icon)
11
+ }
File without changes