@microsoft/fast-router 1.0.0-alpha.28 → 1.0.0-alpha.29
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.json +21 -0
- package/CHANGELOG.md +10 -1
- package/package.json +4 -3
package/CHANGELOG.json
CHANGED
|
@@ -1,6 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microsoft/fast-router",
|
|
3
3
|
"entries": [
|
|
4
|
+
{
|
|
5
|
+
"date": "Wed, 11 Dec 2024 19:52:58 GMT",
|
|
6
|
+
"version": "1.0.0-alpha.29",
|
|
7
|
+
"tag": "@microsoft/fast-router_v1.0.0-alpha.29",
|
|
8
|
+
"comments": {
|
|
9
|
+
"prerelease": [
|
|
10
|
+
{
|
|
11
|
+
"author": "7559015+janechu@users.noreply.github.com",
|
|
12
|
+
"package": "@microsoft/fast-router",
|
|
13
|
+
"commit": "1238af4df3abec01799cb05c5657f8d245cf3f25",
|
|
14
|
+
"comment": "Change the router to use peerDependency for fast-element"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"author": "beachball",
|
|
18
|
+
"package": "@microsoft/fast-router",
|
|
19
|
+
"comment": "Bump @microsoft/fast-element to v2.0.1",
|
|
20
|
+
"commit": "not available"
|
|
21
|
+
}
|
|
22
|
+
]
|
|
23
|
+
}
|
|
24
|
+
},
|
|
4
25
|
{
|
|
5
26
|
"date": "Mon, 19 Aug 2024 22:04:19 GMT",
|
|
6
27
|
"version": "1.0.0-alpha.28",
|
package/CHANGELOG.md
CHANGED
|
@@ -1,9 +1,18 @@
|
|
|
1
1
|
# Change Log - @microsoft/fast-router
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Wed, 11 Dec 2024 19:52:58 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## 1.0.0-alpha.29
|
|
8
|
+
|
|
9
|
+
Wed, 11 Dec 2024 19:52:58 GMT
|
|
10
|
+
|
|
11
|
+
### Changes
|
|
12
|
+
|
|
13
|
+
- Change the router to use peerDependency for fast-element (7559015+janechu@users.noreply.github.com)
|
|
14
|
+
- Bump @microsoft/fast-element to v2.0.1
|
|
15
|
+
|
|
7
16
|
## 1.0.0-alpha.28
|
|
8
17
|
|
|
9
18
|
Mon, 19 Aug 2024 22:04:19 GMT
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@microsoft/fast-router",
|
|
3
3
|
"description": "A web-components-based router.",
|
|
4
4
|
"sideEffects": false,
|
|
5
|
-
"version": "1.0.0-alpha.
|
|
5
|
+
"version": "1.0.0-alpha.29",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Microsoft",
|
|
8
8
|
"url": "https://discord.gg/FcSNfg4"
|
|
@@ -48,6 +48,7 @@
|
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"@jsdevtools/coverage-istanbul-loader": "^3.0.5",
|
|
50
50
|
"@microsoft/api-extractor": "^7.47.0",
|
|
51
|
+
"@microsoft/fast-element": "^2.0.1",
|
|
51
52
|
"@types/chai": "^4.2.11",
|
|
52
53
|
"@types/karma": "^6.3.3",
|
|
53
54
|
"@types/mocha": "^7.0.2",
|
|
@@ -80,8 +81,8 @@
|
|
|
80
81
|
"webpack": "^5.92.1",
|
|
81
82
|
"webpack-cli": "^5.1.4"
|
|
82
83
|
},
|
|
83
|
-
"
|
|
84
|
-
"@microsoft/fast-element": "^2.0.
|
|
84
|
+
"peerDependencies": {
|
|
85
|
+
"@microsoft/fast-element": "^2.0.1"
|
|
85
86
|
},
|
|
86
87
|
"beachball": {
|
|
87
88
|
"disallowedChangeTypes": [
|