@adobe/spectrum-component-api-schemas 6.1.1 → 6.1.3
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.md +14 -0
- package/package.json +2 -2
- package/test/performance.test.js +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# [**@adobe/spectrum-component-api-schemas**](https://github.com/adobe/spectrum-component-api-schemas)
|
|
2
2
|
|
|
3
|
+
## 6.1.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`0e30511`](https://github.com/adobe/spectrum-design-data/commit/0e30511ec5ce916b76b97d116459a6421f0ddd4e), [`0e30511`](https://github.com/adobe/spectrum-design-data/commit/0e30511ec5ce916b76b97d116459a6421f0ddd4e)]:
|
|
8
|
+
- @adobe/design-data-spec@0.7.0
|
|
9
|
+
|
|
10
|
+
## 6.1.2
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [[`fd06340`](https://github.com/adobe/spectrum-design-data/commit/fd063404ebef790f37887611572a8ae1e49dc053)]:
|
|
15
|
+
- @adobe/design-data-spec@0.6.0
|
|
16
|
+
|
|
3
17
|
## 6.1.1
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/spectrum-component-api-schemas",
|
|
3
|
-
"version": "6.1.
|
|
3
|
+
"version": "6.1.3",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"license": "Apache-2.0",
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"glob": "^10.3.12",
|
|
22
|
-
"@adobe/design-data-spec": "0.
|
|
22
|
+
"@adobe/design-data-spec": "0.7.0"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"ajv": "^8.12.0",
|
package/test/performance.test.js
CHANGED
|
@@ -112,10 +112,10 @@ test("memory usage should be reasonable", async (t) => {
|
|
|
112
112
|
const finalMemory = process.memoryUsage().heapUsed;
|
|
113
113
|
const memoryIncrease = finalMemory - initialMemory;
|
|
114
114
|
|
|
115
|
-
// Memory increase should be less than
|
|
115
|
+
// Memory increase should be less than 20MB
|
|
116
116
|
const memoryIncreaseMB = memoryIncrease / 1024 / 1024;
|
|
117
117
|
t.true(
|
|
118
|
-
memoryIncreaseMB <
|
|
119
|
-
`Memory usage increased by ${memoryIncreaseMB.toFixed(2)}MB, expected <
|
|
118
|
+
memoryIncreaseMB < 20,
|
|
119
|
+
`Memory usage increased by ${memoryIncreaseMB.toFixed(2)}MB, expected < 20MB`,
|
|
120
120
|
);
|
|
121
121
|
});
|