@atlaskit/media-test-helpers 42.4.0 → 42.4.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 +41 -0
- package/dist/cjs/authProvider.js +1 -1
- package/dist/cjs/mocks/database/chunk.js +2 -3
- package/dist/cjs/mocks/database/index.js +4 -5
- package/dist/cjs/mocks/media-mock.js +2 -2
- package/dist/cjs/mocks/routers/api-router.js +3 -3
- package/dist/cjs/mocks/websockets/remote-upload-server.js +2 -2
- package/dist/es2019/authProvider.js +1 -1
- package/dist/es2019/mocks/database/chunk.js +1 -1
- package/dist/es2019/mocks/database/index.js +1 -1
- package/dist/es2019/mocks/media-mock.js +1 -1
- package/dist/es2019/mocks/routers/api-router.js +1 -1
- package/dist/es2019/mocks/websockets/remote-upload-server.js +1 -1
- package/dist/esm/authProvider.js +1 -1
- package/dist/esm/mocks/database/chunk.js +1 -1
- package/dist/esm/mocks/database/index.js +1 -1
- package/dist/esm/mocks/media-mock.js +1 -1
- package/dist/esm/mocks/routers/api-router.js +1 -1
- package/dist/esm/mocks/websockets/remote-upload-server.js +1 -1
- package/package.json +5 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,46 @@
|
|
|
1
1
|
# @atlaskit/media-test-helpers
|
|
2
2
|
|
|
3
|
+
## 42.4.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 42.4.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [`0927c3666c010`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/0927c3666c010) -
|
|
14
|
+
Upgrade `uuid` from `3.x` to `11.1.1` to remediate GHSA-w5hq-g745-h8pq / SNYK-JS-UUID-16133035.
|
|
15
|
+
|
|
16
|
+
`uuid@11` removed the deep subpath exports (`uuid/v4`, `uuid/v1`, `uuid/v5`) and the default
|
|
17
|
+
export, so all internal call sites were migrated to named imports:
|
|
18
|
+
|
|
19
|
+
```diff
|
|
20
|
+
-import uuid from 'uuid/v4';
|
|
21
|
+
+import { v4 as uuid } from 'uuid';
|
|
22
|
+
|
|
23
|
+
-import uuid from 'uuid';
|
|
24
|
+
+import { v4 as uuid } from 'uuid';
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
With the exception of `@atlassian/integrations` (below), this is an internal implementation change
|
|
28
|
+
only - no public API, export, or entrypoint changed. UUID generation behaviour is unchanged
|
|
29
|
+
(`uuid@3`'s default export was already `v4`).
|
|
30
|
+
|
|
31
|
+
`@atlassian/integrations` declares `uuid` as a peer dependency, so its declared range moved from
|
|
32
|
+
`^3.1.0` to `^11.1.1`. That is a peer dependency declaration change, hence `minor` rather than
|
|
33
|
+
`patch` for that package.
|
|
34
|
+
|
|
35
|
+
The following `platform/packages/ai-mate` packages were also touched, but are all `private: true`
|
|
36
|
+
and so are intentionally not listed in the frontmatter above:
|
|
37
|
+
- `@atlassian/csm-assistance-service` - bumped its explicit `uuid` dependency from `npm:^9.0.0` to
|
|
38
|
+
`npm:^11.1.1` (`9.0.1` is also within the advisory's affected range).
|
|
39
|
+
- `@atlassian/csm-guidance-config` - example helper only, migrated to the named `uuid` import.
|
|
40
|
+
- `@atlassian/csm-ui-components` - example helper only, migrated to the named `uuid` import.
|
|
41
|
+
|
|
42
|
+
- Updated dependencies
|
|
43
|
+
|
|
3
44
|
## 42.4.0
|
|
4
45
|
|
|
5
46
|
### Minor Changes
|
package/dist/cjs/authProvider.js
CHANGED
|
@@ -58,7 +58,7 @@ var StoryBookAuthProvider = exports.StoryBookAuthProvider = /*#__PURE__*/functio
|
|
|
58
58
|
};
|
|
59
59
|
}();
|
|
60
60
|
return function (authContext) {
|
|
61
|
-
var isRunningInUnitTest = typeof process.env.JEST_WORKER_ID !== 'undefined' || typeof jest !== 'undefined';
|
|
61
|
+
var isRunningInUnitTest = typeof process !== 'undefined' && typeof process.env.JEST_WORKER_ID !== 'undefined' || typeof jest !== 'undefined';
|
|
62
62
|
if (isRunningInUnitTest) {
|
|
63
63
|
// This is to prevent accidental staging environment calls from the auth provider in unit tests
|
|
64
64
|
// The implementation also means that it can effect unrelated tests due to the setInterval and unhandled promise rejection
|
|
@@ -1,17 +1,16 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
3
|
Object.defineProperty(exports, "__esModule", {
|
|
5
4
|
value: true
|
|
6
5
|
});
|
|
7
6
|
exports.createChunk = createChunk;
|
|
8
|
-
var
|
|
7
|
+
var _uuid = require("uuid");
|
|
9
8
|
// eslint-disable-next-line @atlaskit/platform/prefer-crypto-random-uuid -- Use crypto.randomUUID instead
|
|
10
9
|
|
|
11
10
|
function createChunk() {
|
|
12
11
|
return {
|
|
13
12
|
// eslint-disable-next-line @atlaskit/platform/prefer-crypto-random-uuid -- Use crypto.randomUUID instead
|
|
14
|
-
id: (0,
|
|
13
|
+
id: (0, _uuid.v4)(),
|
|
15
14
|
blob: new Blob()
|
|
16
15
|
};
|
|
17
16
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
3
|
Object.defineProperty(exports, "__esModule", {
|
|
5
4
|
value: true
|
|
6
5
|
});
|
|
@@ -31,7 +30,7 @@ Object.defineProperty(exports, "isMediaItemDetails", {
|
|
|
31
30
|
});
|
|
32
31
|
exports.userAuthProvider = exports.userAuth = exports.tenantAuthProvider = exports.tenantAuth = void 0;
|
|
33
32
|
var _kakapo = require("kakapo");
|
|
34
|
-
var
|
|
33
|
+
var _uuid = require("uuid");
|
|
35
34
|
var _collection = require("./collection");
|
|
36
35
|
var _collectionItem = require("./collection-item");
|
|
37
36
|
var _upload = require("./upload");
|
|
@@ -43,13 +42,13 @@ var _constants = require("@atlaskit/media-client/constants");
|
|
|
43
42
|
|
|
44
43
|
var tenantAuth = exports.tenantAuth = {
|
|
45
44
|
// eslint-disable-next-line @atlaskit/platform/prefer-crypto-random-uuid -- Use crypto.randomUUID instead
|
|
46
|
-
clientId: (0,
|
|
45
|
+
clientId: (0, _uuid.v4)(),
|
|
47
46
|
token: 'some-tenant-token',
|
|
48
47
|
baseUrl: _mediaClientProvider.defaultBaseUrl
|
|
49
48
|
};
|
|
50
49
|
var userAuth = exports.userAuth = {
|
|
51
50
|
// eslint-disable-next-line @atlaskit/platform/prefer-crypto-random-uuid -- Use crypto.randomUUID instead
|
|
52
|
-
clientId: (0,
|
|
51
|
+
clientId: (0, _uuid.v4)(),
|
|
53
52
|
token: 'some-user-token',
|
|
54
53
|
baseUrl: _mediaClientProvider.defaultBaseUrl
|
|
55
54
|
};
|
|
@@ -84,7 +83,7 @@ function createDatabase() {
|
|
|
84
83
|
collectionName: collectionName,
|
|
85
84
|
blob: blob,
|
|
86
85
|
// eslint-disable-next-line @atlaskit/platform/prefer-crypto-random-uuid -- Use crypto.randomUUID instead
|
|
87
|
-
occurrenceKey: (0,
|
|
86
|
+
occurrenceKey: (0, _uuid.v4)(),
|
|
88
87
|
mediaType: mediaType,
|
|
89
88
|
mimeType: mimeType,
|
|
90
89
|
name: name,
|
|
@@ -14,7 +14,7 @@ var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/creat
|
|
|
14
14
|
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
15
15
|
var _kakapo = require("kakapo");
|
|
16
16
|
var exenv = _interopRequireWildcard(require("exenv"));
|
|
17
|
-
var
|
|
17
|
+
var _uuid = require("uuid");
|
|
18
18
|
var _routers = require("./routers");
|
|
19
19
|
var _database = require("./database");
|
|
20
20
|
var _websockets = require("./websockets");
|
|
@@ -90,7 +90,7 @@ function generateFilesFromTestData(files) {
|
|
|
90
90
|
processingStatus = _file$processingStatu === void 0 ? 'succeeded' : _file$processingStatu,
|
|
91
91
|
dataUri = file.dataUri,
|
|
92
92
|
_file$id = file.id,
|
|
93
|
-
id = _file$id === void 0 ? (0,
|
|
93
|
+
id = _file$id === void 0 ? (0, _uuid.v4)() : _file$id,
|
|
94
94
|
_file$name = file.name,
|
|
95
95
|
name = _file$name === void 0 ? "test-file-".concat(id) : _file$name,
|
|
96
96
|
_file$mediaType = file.mediaType,
|
|
@@ -16,7 +16,7 @@ var _getPrototypeOf2 = _interopRequireDefault(require("@babel/runtime/helpers/ge
|
|
|
16
16
|
var _get2 = _interopRequireDefault(require("@babel/runtime/helpers/get"));
|
|
17
17
|
var _inherits2 = _interopRequireDefault(require("@babel/runtime/helpers/inherits"));
|
|
18
18
|
var _kakapo = require("kakapo");
|
|
19
|
-
var
|
|
19
|
+
var _uuid = require("uuid");
|
|
20
20
|
var _mediaCommon = require("@atlaskit/media-common");
|
|
21
21
|
var _database = require("../database");
|
|
22
22
|
var _exampleMediaItems = require("../../exampleMediaItems");
|
|
@@ -415,9 +415,9 @@ function createApiRouter(isSlowServer, urlsReturnErrorsTo) {
|
|
|
415
415
|
});
|
|
416
416
|
if (!replaceFileId && !occurrenceKey) {
|
|
417
417
|
// eslint-disable-next-line @atlaskit/platform/prefer-crypto-random-uuid -- Use crypto.randomUUID instead
|
|
418
|
-
replaceFileId = (0,
|
|
418
|
+
replaceFileId = (0, _uuid.v4)();
|
|
419
419
|
// eslint-disable-next-line @atlaskit/platform/prefer-crypto-random-uuid -- Use crypto.randomUUID instead
|
|
420
|
-
occurrenceKey = (0,
|
|
420
|
+
occurrenceKey = (0, _uuid.v4)();
|
|
421
421
|
database.push('collectionItem', (0, _database.createEmptyCollectionItem)({
|
|
422
422
|
id: replaceFileId,
|
|
423
423
|
collectionName: destinationCollection,
|
|
@@ -19,7 +19,7 @@ var _concatMap = require("rxjs/operators/concatMap");
|
|
|
19
19
|
var _mergeMap = require("rxjs/operators/mergeMap");
|
|
20
20
|
var _switchMap = require("rxjs/operators/switchMap");
|
|
21
21
|
var _tap = require("rxjs/operators/tap");
|
|
22
|
-
var
|
|
22
|
+
var _uuid = require("uuid");
|
|
23
23
|
var _messages = require("./messages");
|
|
24
24
|
var _database = require("../database");
|
|
25
25
|
var _mediaClientProvider = require("../../mediaClientProvider");
|
|
@@ -120,7 +120,7 @@ function generateDownstreamMessages(wsUrl, database, isSlowServer) {
|
|
|
120
120
|
tenantFileId = _message$params.jobId;
|
|
121
121
|
|
|
122
122
|
// eslint-disable-next-line @atlaskit/platform/prefer-crypto-random-uuid -- Use crypto.randomUUID instead
|
|
123
|
-
var userFileId = (0,
|
|
123
|
+
var userFileId = (0, _uuid.v4)();
|
|
124
124
|
var fileSize = (0, _mockData.getFakeFileSize)();
|
|
125
125
|
|
|
126
126
|
// create user file in database
|
|
@@ -23,7 +23,7 @@ export class StoryBookAuthProvider {
|
|
|
23
23
|
return await (await response).json();
|
|
24
24
|
};
|
|
25
25
|
return authContext => {
|
|
26
|
-
const isRunningInUnitTest = typeof process.env.JEST_WORKER_ID !== 'undefined' || typeof jest !== 'undefined';
|
|
26
|
+
const isRunningInUnitTest = typeof process !== 'undefined' && typeof process.env.JEST_WORKER_ID !== 'undefined' || typeof jest !== 'undefined';
|
|
27
27
|
if (isRunningInUnitTest) {
|
|
28
28
|
// This is to prevent accidental staging environment calls from the auth provider in unit tests
|
|
29
29
|
// The implementation also means that it can effect unrelated tests due to the setInterval and unhandled promise rejection
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// eslint-disable-next-line @atlaskit/platform/prefer-crypto-random-uuid -- Use crypto.randomUUID instead
|
|
2
|
-
import uuid from 'uuid
|
|
2
|
+
import { v4 as uuid } from 'uuid';
|
|
3
3
|
export function createChunk() {
|
|
4
4
|
return {
|
|
5
5
|
// eslint-disable-next-line @atlaskit/platform/prefer-crypto-random-uuid -- Use crypto.randomUUID instead
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Database } from 'kakapo';
|
|
2
2
|
// eslint-disable-next-line @atlaskit/platform/prefer-crypto-random-uuid -- Use crypto.randomUUID instead
|
|
3
|
-
import uuidV4 from 'uuid
|
|
3
|
+
import { v4 as uuidV4 } from 'uuid';
|
|
4
4
|
import { createCollection } from './collection';
|
|
5
5
|
import { createCollectionItem } from './collection-item';
|
|
6
6
|
import { createUpload } from './upload';
|
|
@@ -2,7 +2,7 @@ import _defineProperty from "@babel/runtime/helpers/defineProperty";
|
|
|
2
2
|
import { Server } from 'kakapo';
|
|
3
3
|
import * as exenv from 'exenv';
|
|
4
4
|
// eslint-disable-next-line @atlaskit/platform/prefer-crypto-random-uuid -- Use crypto.randomUUID instead
|
|
5
|
-
import uuid from 'uuid
|
|
5
|
+
import { v4 as uuid } from 'uuid';
|
|
6
6
|
import { createApiRouter, createMediaPlaygroundRouter } from './routers';
|
|
7
7
|
import { createDatabase } from './database';
|
|
8
8
|
import { RemoteUploadActivityServer } from './websockets';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// eslint-disable-line no-console
|
|
2
2
|
import { Router, KakapoResponse } from 'kakapo';
|
|
3
3
|
// eslint-disable-next-line @atlaskit/platform/prefer-crypto-random-uuid -- Use crypto.randomUUID instead
|
|
4
|
-
import uuid from 'uuid
|
|
4
|
+
import { v4 as uuid } from 'uuid';
|
|
5
5
|
import { getMediaTypeFromMimeType } from '@atlaskit/media-common';
|
|
6
6
|
import { createCollection, createCollectionItem, createEmptyCollectionItem, isMediaItemDetails } from '../database';
|
|
7
7
|
import { vrVideoDetails } from '../../exampleMediaItems';
|
|
@@ -10,7 +10,7 @@ import { mergeMap } from 'rxjs/operators/mergeMap';
|
|
|
10
10
|
import { switchMap } from 'rxjs/operators/switchMap';
|
|
11
11
|
import { tap } from 'rxjs/operators/tap';
|
|
12
12
|
// eslint-disable-next-line @atlaskit/platform/prefer-crypto-random-uuid -- Use crypto.randomUUID instead
|
|
13
|
-
import uuid from 'uuid
|
|
13
|
+
import { v4 as uuid } from 'uuid';
|
|
14
14
|
import { notifyMetadataPayload, remoteUploadStartPayload, remoteUploadProgressPayload, remoteUploadEndPayload } from './messages';
|
|
15
15
|
import { createCollectionItem } from '../database';
|
|
16
16
|
import { defaultBaseUrl } from '../../mediaClientProvider';
|
package/dist/esm/authProvider.js
CHANGED
|
@@ -51,7 +51,7 @@ export var StoryBookAuthProvider = /*#__PURE__*/function () {
|
|
|
51
51
|
};
|
|
52
52
|
}();
|
|
53
53
|
return function (authContext) {
|
|
54
|
-
var isRunningInUnitTest = typeof process.env.JEST_WORKER_ID !== 'undefined' || typeof jest !== 'undefined';
|
|
54
|
+
var isRunningInUnitTest = typeof process !== 'undefined' && typeof process.env.JEST_WORKER_ID !== 'undefined' || typeof jest !== 'undefined';
|
|
55
55
|
if (isRunningInUnitTest) {
|
|
56
56
|
// This is to prevent accidental staging environment calls from the auth provider in unit tests
|
|
57
57
|
// The implementation also means that it can effect unrelated tests due to the setInterval and unhandled promise rejection
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// eslint-disable-next-line @atlaskit/platform/prefer-crypto-random-uuid -- Use crypto.randomUUID instead
|
|
2
|
-
import uuid from 'uuid
|
|
2
|
+
import { v4 as uuid } from 'uuid';
|
|
3
3
|
export function createChunk() {
|
|
4
4
|
return {
|
|
5
5
|
// eslint-disable-next-line @atlaskit/platform/prefer-crypto-random-uuid -- Use crypto.randomUUID instead
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Database } from 'kakapo';
|
|
2
2
|
// eslint-disable-next-line @atlaskit/platform/prefer-crypto-random-uuid -- Use crypto.randomUUID instead
|
|
3
|
-
import uuidV4 from 'uuid
|
|
3
|
+
import { v4 as uuidV4 } from 'uuid';
|
|
4
4
|
import { createCollection } from './collection';
|
|
5
5
|
import { createCollectionItem } from './collection-item';
|
|
6
6
|
import { createUpload } from './upload';
|
|
@@ -5,7 +5,7 @@ import _defineProperty from "@babel/runtime/helpers/defineProperty";
|
|
|
5
5
|
import { Server } from 'kakapo';
|
|
6
6
|
import * as exenv from 'exenv';
|
|
7
7
|
// eslint-disable-next-line @atlaskit/platform/prefer-crypto-random-uuid -- Use crypto.randomUUID instead
|
|
8
|
-
import uuid from 'uuid
|
|
8
|
+
import { v4 as uuid } from 'uuid';
|
|
9
9
|
import { createApiRouter, createMediaPlaygroundRouter } from './routers';
|
|
10
10
|
import { createDatabase } from './database';
|
|
11
11
|
import { RemoteUploadActivityServer } from './websockets';
|
|
@@ -16,7 +16,7 @@ function _superPropGet(t, o, e, r) { var p = _get(_getPrototypeOf(1 & r ? t.prot
|
|
|
16
16
|
// eslint-disable-line no-console
|
|
17
17
|
import { Router, KakapoResponse } from 'kakapo';
|
|
18
18
|
// eslint-disable-next-line @atlaskit/platform/prefer-crypto-random-uuid -- Use crypto.randomUUID instead
|
|
19
|
-
import uuid from 'uuid
|
|
19
|
+
import { v4 as uuid } from 'uuid';
|
|
20
20
|
import { getMediaTypeFromMimeType } from '@atlaskit/media-common';
|
|
21
21
|
import { createCollection, createCollectionItem, createEmptyCollectionItem, isMediaItemDetails } from '../database';
|
|
22
22
|
import { vrVideoDetails } from '../../exampleMediaItems';
|
|
@@ -15,7 +15,7 @@ import { mergeMap } from 'rxjs/operators/mergeMap';
|
|
|
15
15
|
import { switchMap } from 'rxjs/operators/switchMap';
|
|
16
16
|
import { tap } from 'rxjs/operators/tap';
|
|
17
17
|
// eslint-disable-next-line @atlaskit/platform/prefer-crypto-random-uuid -- Use crypto.randomUUID instead
|
|
18
|
-
import uuid from 'uuid
|
|
18
|
+
import { v4 as uuid } from 'uuid';
|
|
19
19
|
import { notifyMetadataPayload, remoteUploadStartPayload, remoteUploadProgressPayload, remoteUploadEndPayload } from './messages';
|
|
20
20
|
import { createCollectionItem } from '../database';
|
|
21
21
|
import { defaultBaseUrl } from '../../mediaClientProvider';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/media-test-helpers",
|
|
3
|
-
"version": "42.4.
|
|
3
|
+
"version": "42.4.2",
|
|
4
4
|
"description": "Collection of test helpers used in media component stories and specs",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"@atlaskit/form": "^17.2.0",
|
|
30
30
|
"@atlaskit/icon": "^37.6.0",
|
|
31
31
|
"@atlaskit/locale": "^5.2.0",
|
|
32
|
-
"@atlaskit/media-client": "^
|
|
32
|
+
"@atlaskit/media-client": "^38.0.0",
|
|
33
33
|
"@atlaskit/media-common": "^14.6.0",
|
|
34
34
|
"@atlaskit/media-state": "^3.2.0",
|
|
35
35
|
"@atlaskit/media-ui": "^30.15.0",
|
|
@@ -39,9 +39,9 @@
|
|
|
39
39
|
"@atlaskit/react-compiler-gating": "^0.2.0",
|
|
40
40
|
"@atlaskit/tabs": "^21.2.0",
|
|
41
41
|
"@atlaskit/textfield": "^10.2.0",
|
|
42
|
-
"@atlaskit/tokens": "^16.
|
|
42
|
+
"@atlaskit/tokens": "^16.11.0",
|
|
43
43
|
"@atlaskit/tooltip": "^24.3.0",
|
|
44
|
-
"@atlaskit/ufo": "^1.
|
|
44
|
+
"@atlaskit/ufo": "^1.2.0",
|
|
45
45
|
"@babel/runtime": "^7.0.0",
|
|
46
46
|
"@emotion/react": "^11.7.1",
|
|
47
47
|
"@emotion/styled": "^11.0.0",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"kakapo": "^4.0.6",
|
|
51
51
|
"mock-socket": "^9.3.1",
|
|
52
52
|
"rxjs": "^5.5.0",
|
|
53
|
-
"uuid": "^
|
|
53
|
+
"uuid": "^11.1.1",
|
|
54
54
|
"xhr-mock": "^2.4.0"
|
|
55
55
|
},
|
|
56
56
|
"peerDependencies": {
|
|
@@ -65,14 +65,6 @@
|
|
|
65
65
|
"react-dom": "^18.2.0",
|
|
66
66
|
"react-intl": "^7.0.0"
|
|
67
67
|
},
|
|
68
|
-
"techstack": {
|
|
69
|
-
"@repo/internal": {
|
|
70
|
-
"design-tokens": [
|
|
71
|
-
"color",
|
|
72
|
-
"spacing"
|
|
73
|
-
]
|
|
74
|
-
}
|
|
75
|
-
},
|
|
76
68
|
"sideEffects": [
|
|
77
69
|
"*.compiled.css"
|
|
78
70
|
],
|