@adobe/spectrum-component-api-schemas 6.1.0 → 6.1.2

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 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.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`fd06340`](https://github.com/adobe/spectrum-design-data/commit/fd063404ebef790f37887611572a8ae1e49dc053)]:
8
+ - @adobe/design-data-spec@0.6.0
9
+
10
+ ## 6.1.1
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [[`38127f5`](https://github.com/adobe/spectrum-design-data/commit/38127f556435783f31ab54c11d1ec6c93da17813)]:
15
+ - @adobe/design-data-spec@0.5.0
16
+
3
17
  ## 6.1.0
4
18
 
5
19
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/spectrum-component-api-schemas",
3
- "version": "6.1.0",
3
+ "version": "6.1.2",
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.4.0"
22
+ "@adobe/design-data-spec": "0.6.0"
23
23
  },
24
24
  "devDependencies": {
25
25
  "ajv": "^8.12.0",
@@ -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 10MB
115
+ // Memory increase should be less than 20MB
116
116
  const memoryIncreaseMB = memoryIncrease / 1024 / 1024;
117
117
  t.true(
118
- memoryIncreaseMB < 10,
119
- `Memory usage increased by ${memoryIncreaseMB.toFixed(2)}MB, expected < 10MB`,
118
+ memoryIncreaseMB < 20,
119
+ `Memory usage increased by ${memoryIncreaseMB.toFixed(2)}MB, expected < 20MB`,
120
120
  );
121
121
  });