@symphony-talent/component-library 4.229.0 → 4.230.0
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 +5 -5
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2015/symphony-talent-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library.mjs.map +1 -1
- package/package.json +64 -2
package/README.md
CHANGED
|
@@ -20,27 +20,27 @@ This project is an Angular library so the only way to actually run and see your
|
|
|
20
20
|
|
|
21
21
|
Step 1 - Install project dependancies
|
|
22
22
|
|
|
23
|
-
|
|
23
|
+
npm install --legacy-peer-deps
|
|
24
24
|
|
|
25
25
|
Step 2 - Build project
|
|
26
26
|
|
|
27
|
-
|
|
27
|
+
npm run build
|
|
28
28
|
|
|
29
29
|
Step 3 - Run Storybook (`http://localhost:6006/?path=/story/`)
|
|
30
30
|
|
|
31
|
-
|
|
31
|
+
npm run storybook
|
|
32
32
|
|
|
33
33
|
## Running lint
|
|
34
34
|
|
|
35
35
|
To run the linting rules you need to run the following command:
|
|
36
36
|
|
|
37
|
-
|
|
37
|
+
npm run lint
|
|
38
38
|
|
|
39
39
|
## Running unit tests
|
|
40
40
|
|
|
41
41
|
To run the unit tests with code coverage you need to run the following command:
|
|
42
42
|
|
|
43
|
-
-
|
|
43
|
+
- npm run test
|
|
44
44
|
|
|
45
45
|
The project is set up to be use chromeHeadless and run only once for the CI build. To run the HTML test runner to help debug tests locally and to visually see which tests failed you can update the Karma config by changing the following settings:
|
|
46
46
|
|