@fluentui/tokens 0.0.0-nightly-20230926-0416.1 → 1.0.0-alpha.10
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 +6 -6
- package/CHANGELOG.md +5 -5
- package/package.json +8 -2
package/CHANGELOG.json
CHANGED
|
@@ -2,16 +2,16 @@
|
|
|
2
2
|
"name": "@fluentui/tokens",
|
|
3
3
|
"entries": [
|
|
4
4
|
{
|
|
5
|
-
"date": "Tue, 26 Sep 2023
|
|
6
|
-
"tag": "@fluentui/
|
|
7
|
-
"version": "
|
|
5
|
+
"date": "Tue, 26 Sep 2023 15:15:09 GMT",
|
|
6
|
+
"tag": "@fluentui/tokens_v1.0.0-alpha.10",
|
|
7
|
+
"version": "1.0.0-alpha.10",
|
|
8
8
|
"comments": {
|
|
9
9
|
"prerelease": [
|
|
10
10
|
{
|
|
11
|
-
"author": "
|
|
11
|
+
"author": "martinhochel@microsoft.com",
|
|
12
12
|
"package": "@fluentui/tokens",
|
|
13
|
-
"commit": "
|
|
14
|
-
"comment": "
|
|
13
|
+
"commit": "e61473fa10195f6ebf2308205c1e72e91b711831",
|
|
14
|
+
"comment": "fix: bump swc core to mitigate transpilation memory leaks"
|
|
15
15
|
}
|
|
16
16
|
]
|
|
17
17
|
}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
# Change Log - @fluentui/tokens
|
|
2
2
|
|
|
3
|
-
This log was last generated on Tue, 26 Sep 2023
|
|
3
|
+
This log was last generated on Tue, 26 Sep 2023 15:15:09 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
-
## [
|
|
7
|
+
## [1.0.0-alpha.10](https://github.com/microsoft/fluentui/tree/@fluentui/tokens_v1.0.0-alpha.10)
|
|
8
8
|
|
|
9
|
-
Tue, 26 Sep 2023
|
|
10
|
-
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/tokens_v1.0.0-alpha.9..@fluentui/
|
|
9
|
+
Tue, 26 Sep 2023 15:15:09 GMT
|
|
10
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/tokens_v1.0.0-alpha.9..@fluentui/tokens_v1.0.0-alpha.10)
|
|
11
11
|
|
|
12
12
|
### Changes
|
|
13
13
|
|
|
14
|
-
-
|
|
14
|
+
- fix: bump swc core to mitigate transpilation memory leaks ([PR #29253](https://github.com/microsoft/fluentui/pull/29253) by martinhochel@microsoft.com)
|
|
15
15
|
|
|
16
16
|
## [1.0.0-alpha.9](https://github.com/microsoft/fluentui/tree/@fluentui/tokens_v1.0.0-alpha.9)
|
|
17
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluentui/tokens",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "1.0.0-alpha.10",
|
|
4
4
|
"description": "Fluent UI Theme Tokens",
|
|
5
5
|
"main": "lib-commonjs/index.js",
|
|
6
6
|
"module": "lib/index.js",
|
|
@@ -30,7 +30,13 @@
|
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@swc/helpers": "^0.5.1"
|
|
32
32
|
},
|
|
33
|
-
"beachball": {
|
|
33
|
+
"beachball": {
|
|
34
|
+
"disallowedChangeTypes": [
|
|
35
|
+
"major",
|
|
36
|
+
"minor",
|
|
37
|
+
"patch"
|
|
38
|
+
]
|
|
39
|
+
},
|
|
34
40
|
"exports": {
|
|
35
41
|
".": {
|
|
36
42
|
"types": "./dist/index.d.ts",
|