piral-ssr-utils 0.15.11 → 0.15.12-beta.5528

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/esm/types.d.ts CHANGED
@@ -7,7 +7,7 @@ declare global {
7
7
  __pilets__?: Array<PiletMetadata>;
8
8
  }
9
9
  }
10
- export declare type MaybeAsync<T> = T | Promise<T>;
10
+ export type MaybeAsync<T> = T | Promise<T>;
11
11
  export interface PiralSsrExternalScript {
12
12
  /**
13
13
  * Creates an external script reference.
package/lib/types.d.ts CHANGED
@@ -7,7 +7,7 @@ declare global {
7
7
  __pilets__?: Array<PiletMetadata>;
8
8
  }
9
9
  }
10
- export declare type MaybeAsync<T> = T | Promise<T>;
10
+ export type MaybeAsync<T> = T | Promise<T>;
11
11
  export interface PiralSsrExternalScript {
12
12
  /**
13
13
  * Creates an external script reference.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "piral-ssr-utils",
3
- "version": "0.15.11",
3
+ "version": "0.15.12-beta.5528",
4
4
  "description": "Utilities for server-side rendering of a Piral instance.",
5
5
  "keywords": [
6
6
  "piral",
@@ -62,10 +62,10 @@
62
62
  "test": "echo \"Error: run tests from root\" && exit 1"
63
63
  },
64
64
  "devDependencies": {
65
- "piral-core": "^0.15.11"
65
+ "piral-core": "0.15.12-beta.5528"
66
66
  },
67
67
  "peerDependencies": {
68
68
  "piral-core": "0.14.x || 0.15.x"
69
69
  },
70
- "gitHead": "513cd05c0234dd02fdc95abb8f391e307f309fea"
70
+ "gitHead": "6d97a2baca7ae3e5fb19a754ba55d44b40ed137e"
71
71
  }