@micro-lc/preview 0.5.0-rc9 → 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,7 @@
1
1
  ## Unreleased
2
2
 
3
+ ## [0.5.0] - 2023-06-19
4
+
3
5
  ### Added
4
6
 
5
7
  - standalone service-worker that might act as a reverse proxy when employed
@@ -10,6 +12,12 @@
10
12
  - `rxjs` bumped to version `v7.8.1`
11
13
  - development dependencies bumped
12
14
 
15
+ ## [0.4.2] - 2023-05-09
16
+
17
+ ### Added
18
+
19
+ - added support for `zone.js`
20
+
13
21
  ## [0.4.1] - 2023-04-07
14
22
 
15
23
  ### Versioning
package/dist/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import type { Manifest } from '@micro-lc/back-kit-engine/schemas';
1
+ import type { Manifest } from '@micro-lc/compose-toolkit';
2
2
  import type { Component, PluginConfiguration } from '@micro-lc/interfaces/schemas/v2';
3
3
  interface UrlMatchPair {
4
4
  headers?: Record<string, string>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@micro-lc/preview",
3
- "version": "0.5.0-rc9",
3
+ "version": "0.5.0",
4
4
  "module": "./dist/index.js",
5
5
  "types": "./dist/index.d.ts",
6
6
  "files": [
@@ -23,21 +23,20 @@
23
23
  },
24
24
  "dependencies": {
25
25
  "@micro-lc/composer": "^2.0.3",
26
- "@micro-lc/post-channel": "0.0.0",
26
+ "@micro-lc/post-channel": "0.1.0-rc1",
27
27
  "es-module-shims": "^1.7.3",
28
28
  "rxjs": "^7.8.1"
29
29
  },
30
30
  "devDependencies": {
31
- "@micro-lc/back-kit-engine": "^0.20.12",
32
- "@micro-lc/interfaces": "^1.0.2",
33
- "@playwright/test": "^1.34.3",
34
- "@types/node": "^20.2.4",
35
- "typescript": "^5.0.4",
31
+ "@micro-lc/compose-toolkit": "^0.1.1",
32
+ "@micro-lc/interfaces": "^1.1.0",
33
+ "@playwright/test": "^1.35.1",
34
+ "@types/node": "^20.3.1",
35
+ "typescript": "^5.1.3",
36
36
  "vite": "^4.3.9",
37
37
  "vite-plugin-mkcert": "^1.15.0"
38
38
  },
39
39
  "engines": {
40
40
  "node": ">=v16.20.0"
41
- },
42
- "stableVersion": "0.4.1"
41
+ }
43
42
  }