@shrub/vue-server 0.5.61 → 0.5.64

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/dist/module.d.ts +1 -1
  2. package/package.json +5 -5
package/dist/module.d.ts CHANGED
@@ -52,7 +52,7 @@ export declare class VueServerModule implements IModule {
52
52
  private component?;
53
53
  private mountOptions?;
54
54
  readonly name = "vue-server";
55
- readonly dependencies: (typeof VueModule | typeof ModelModule)[];
55
+ readonly dependencies: (typeof ModelModule | typeof VueModule)[];
56
56
  initialize(init: IModuleInitializer): void;
57
57
  configureServices(registration: IServiceRegistration): void;
58
58
  createApp(): IVueSSRCreateResult;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@shrub/vue-server",
3
3
  "description": "A module that extends the Vue module for server-side rendering support.",
4
- "version": "0.5.61",
4
+ "version": "0.5.64",
5
5
  "license": "MIT",
6
6
  "repository": {
7
7
  "type": "git",
@@ -26,13 +26,13 @@
26
26
  "watch": "tsc -b . -w"
27
27
  },
28
28
  "dependencies": {
29
- "@shrub/core": "0.5.61",
30
- "@shrub/model": "0.5.61",
31
- "@shrub/vue": "0.5.61",
29
+ "@shrub/core": "0.5.64",
30
+ "@shrub/model": "0.5.64",
31
+ "@shrub/vue": "0.5.64",
32
32
  "@sprig/serialization": "0.2.0",
33
33
  "vue": "^2.6.10",
34
34
  "vue-router": "^3.1.3",
35
35
  "vue-server-renderer": "^2.6.10"
36
36
  },
37
- "gitHead": "0a4e453ffba2dd3452fb25c199b6129323d5141c"
37
+ "gitHead": "ca1a05f6f836acccf79d6dfad9036262a2c3e615"
38
38
  }