@box/activity-feed 2.2.2 → 2.2.4
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/README.md +3 -7
- package/package.json +14 -14
package/README.md
CHANGED
|
@@ -33,9 +33,8 @@ All commands used with Nx can be found in `project.json` file within your packag
|
|
|
33
33
|
- `nx storybook activity-feed` - launches development environment for UI component.
|
|
34
34
|
- `nx build-storybook activity-feed` - build static version of storybook with all stories.
|
|
35
35
|
- `nx build activity-feed` - build package using `shared-feature-builder` executor from `automation` package.
|
|
36
|
-
- `nx build activity-feed --watch` - build package with --watch flag enabled, which rebuilds `dist` content based on changes in `src
|
|
37
|
-
- `nx
|
|
38
|
-
- `nx lint activity-feed` - run linter over package files,
|
|
36
|
+
- `nx build activity-feed --watch` - build package with --watch flag enabled, which rebuilds `dist` content based on changes in `src`.
|
|
37
|
+
- `nx lint activity-feed` - runs linter over package files.
|
|
39
38
|
- `nx test activity-feed` - runs storybook tests (visual/interactions) and jest unit tests, producing coverage report at the end.
|
|
40
39
|
- `nx test-storybook activity-feed` - runs storybook tests. You need first to start storybook in separate terminal for this to work.
|
|
41
40
|
- `nx test-storybook-local-coverage activity-feed` - runs storybook tests, and produces coverage report at the end. Requires running instance of storybook.
|
|
@@ -51,7 +50,4 @@ Code of the feature belongs to eua-owners. Responsibilities of owning team inclu
|
|
|
51
50
|
|
|
52
51
|
## Translations
|
|
53
52
|
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
The `i18n/` dir is bundled with this package to enable the consuming app to use the translations included in this component it need to adjust it's TranslationsPlugin,
|
|
57
|
-
see EUA's webpack.base.config.js and i18n.config.js for reference.
|
|
53
|
+
Per-locale `i18n/*.js` files are generated and committed by the Moji Jenkins pipeline. The shared-feature builder copies them into `dist/i18n/` during `build`. Consuming applications list this package in `i18n.config.js` under `translationDependencies`.
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@box/activity-feed",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.4",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE",
|
|
5
5
|
"peerDependencies": {
|
|
6
|
-
"@box/blueprint-web": "^16.8.
|
|
7
|
-
"@box/blueprint-web-assets": "^5.
|
|
8
|
-
"@box/collaboration-popover": "^2.1.
|
|
9
|
-
"@box/readable-time": "^2.1.
|
|
10
|
-
"@box/threaded-annotations": "^4.0.
|
|
11
|
-
"@box/user-selector": "^2.1.
|
|
6
|
+
"@box/blueprint-web": "^16.8.2",
|
|
7
|
+
"@box/blueprint-web-assets": "^5.5.0",
|
|
8
|
+
"@box/collaboration-popover": "^2.1.25",
|
|
9
|
+
"@box/readable-time": "^2.1.25",
|
|
10
|
+
"@box/threaded-annotations": "^4.0.6",
|
|
11
|
+
"@box/user-selector": "^2.1.27",
|
|
12
12
|
"clsx": "^1.2.1",
|
|
13
13
|
"react": "^18.0.0",
|
|
14
14
|
"react-dom": "^18.0.0",
|
|
@@ -18,14 +18,14 @@
|
|
|
18
18
|
"access": "public"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
|
-
"@box/blueprint-web": "^16.8.
|
|
22
|
-
"@box/blueprint-web-assets": "^5.
|
|
23
|
-
"@box/collaboration-popover": "^2.1.
|
|
21
|
+
"@box/blueprint-web": "^16.8.2",
|
|
22
|
+
"@box/blueprint-web-assets": "^5.5.0",
|
|
23
|
+
"@box/collaboration-popover": "^2.1.25",
|
|
24
24
|
"@box/eslint-plugin-blueprint": "2.1.10",
|
|
25
|
-
"@box/readable-time": "^2.1.
|
|
26
|
-
"@box/storybook-utils": "1.1.
|
|
27
|
-
"@box/threaded-annotations": "^4.0.
|
|
28
|
-
"@box/user-selector": "^2.1.
|
|
25
|
+
"@box/readable-time": "^2.1.25",
|
|
26
|
+
"@box/storybook-utils": "1.1.24",
|
|
27
|
+
"@box/threaded-annotations": "^4.0.6",
|
|
28
|
+
"@box/user-selector": "^2.1.27",
|
|
29
29
|
"react-intl": "^6.4.2"
|
|
30
30
|
},
|
|
31
31
|
"files": [
|