@box/metadata-filter 2.2.17 → 2.2.19
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 +6 -1
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
- [Running commands](#running-commands)
|
|
6
6
|
- [Available commands](#available-commands)
|
|
7
7
|
- [Ownership](#ownership)
|
|
8
|
+
- [Translations](#translations)
|
|
8
9
|
|
|
9
10
|
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
|
|
10
11
|
|
|
@@ -32,7 +33,7 @@ All commands used with Nx can be found in `project.json` file within your packag
|
|
|
32
33
|
- `nx storybook metadata-filter` - launches development environment for UI component.
|
|
33
34
|
- `nx build-storybook metadata-filter` - build static version of storybook with all stories.
|
|
34
35
|
- `nx build metadata-filter` - build package using `shared-feature-builder` executor from `automation` package.
|
|
35
|
-
- `nx lint metadata-filter` -
|
|
36
|
+
- `nx lint metadata-filter` - runs linter over package files.
|
|
36
37
|
- `nx test metadata-filter` - runs storybook tests (visual/interactions) and jest unit tests, producing coverage report at the end.
|
|
37
38
|
- `nx test-storybook metadata-filter` - runs storybook tests. You need first to start storybook in separate terminal for this to work.
|
|
38
39
|
- `nx test-storybook-local-coverage metadata-filter` - runs storybook tests, and produces coverage report at the end. Requires running instance of storybook.
|
|
@@ -45,3 +46,7 @@ All commands used with Nx can be found in `project.json` file within your packag
|
|
|
45
46
|
## Ownership
|
|
46
47
|
|
|
47
48
|
Code of the feature belongs to @Box/webapp-eng. Responsibilities of owning team include control over code quality, providing guidelines for changes, and alignment with other teams regarding changes. It would be a good practice to consult which team, owning or requesting, will be responsible for implementing changes to code.
|
|
49
|
+
|
|
50
|
+
## Translations
|
|
51
|
+
|
|
52
|
+
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,21 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@box/metadata-filter",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.19",
|
|
4
4
|
"peerDependencies": {
|
|
5
|
-
"@box/blueprint-web": "^16.8.
|
|
6
|
-
"@box/blueprint-web-assets": "^5.5.
|
|
7
|
-
"@box/combobox-with-api": "^2.1.
|
|
8
|
-
"@box/metadata-taxonomy-picker": "^3.1.
|
|
5
|
+
"@box/blueprint-web": "^16.8.4",
|
|
6
|
+
"@box/blueprint-web-assets": "^5.5.2",
|
|
7
|
+
"@box/combobox-with-api": "^2.1.28",
|
|
8
|
+
"@box/metadata-taxonomy-picker": "^3.1.28",
|
|
9
9
|
"formik": "^2.0.3",
|
|
10
10
|
"react": "^17.0.0 || ^18.0.0",
|
|
11
11
|
"react-dom": "^17.0.0 || ^18.0.0",
|
|
12
12
|
"react-intl": "^6.4.2"
|
|
13
13
|
},
|
|
14
14
|
"devDependencies": {
|
|
15
|
-
"@box/blueprint-web": "^16.8.
|
|
16
|
-
"@box/blueprint-web-assets": "^5.5.
|
|
17
|
-
"@box/metadata-taxonomy-picker": "^3.1.
|
|
18
|
-
"@box/storybook-utils": "^1.1.
|
|
15
|
+
"@box/blueprint-web": "^16.8.4",
|
|
16
|
+
"@box/blueprint-web-assets": "^5.5.2",
|
|
17
|
+
"@box/metadata-taxonomy-picker": "^3.1.28",
|
|
18
|
+
"@box/storybook-utils": "^1.1.26",
|
|
19
19
|
"react": "^18.3.0",
|
|
20
20
|
"react-dom": "^18.3.0",
|
|
21
21
|
"react-intl": "^6.4.2"
|