@times-components/storybook 4.1.64 → 4.1.68
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 +32 -0
- package/README.md +1 -4
- package/package.json +6 -10
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,38 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [4.1.68](https://github.com/newsuk/times-components/compare/@times-components/storybook@4.1.67...@times-components/storybook@4.1.68) (2021-12-02)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @times-components/storybook
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [4.1.67](https://github.com/newsuk/times-components/compare/@times-components/storybook@4.1.66...@times-components/storybook@4.1.67) (2021-11-25)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @times-components/storybook
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
## [4.1.66](https://github.com/newsuk/times-components/compare/@times-components/storybook@4.1.65...@times-components/storybook@4.1.66) (2021-08-09)
|
|
23
|
+
|
|
24
|
+
**Note:** Version bump only for package @times-components/storybook
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
## [4.1.65](https://github.com/newsuk/times-components/compare/@times-components/storybook@4.1.64...@times-components/storybook@4.1.65) (2021-07-05)
|
|
31
|
+
|
|
32
|
+
**Note:** Version bump only for package @times-components/storybook
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
6
38
|
## [4.1.64](https://github.com/newsuk/times-components/compare/@times-components/storybook@4.1.63...@times-components/storybook@4.1.64) (2021-07-02)
|
|
7
39
|
|
|
8
40
|
**Note:** Version bump only for package @times-components/storybook
|
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@ Times Components showcases its UI components using
|
|
|
8
8
|
> interactively develop and test components.
|
|
9
9
|
|
|
10
10
|
Each package has one or more `my-component.stories.js` file. The
|
|
11
|
-
`.
|
|
11
|
+
`.stories.js` file name is the hook that the CLI uses to load
|
|
12
12
|
these stories into storybook.
|
|
13
13
|
|
|
14
14
|
## `my-component.stories.js`
|
|
@@ -105,8 +105,5 @@ This package uses [yarn](https://yarnpkg.com) (latest) to run unit tests on each
|
|
|
105
105
|
platform with [jest](https://facebook.github.io/jest/).
|
|
106
106
|
|
|
107
107
|
```
|
|
108
|
-
yarn test:all
|
|
109
|
-
yarn test:android
|
|
110
|
-
yarn test:ios
|
|
111
108
|
yarn test:web
|
|
112
109
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@times-components/storybook",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.68",
|
|
4
4
|
"description": "React storybook helpers for Times Components",
|
|
5
5
|
"main": "dist/storybook",
|
|
6
6
|
"dev": "src/storybook",
|
|
@@ -9,10 +9,7 @@
|
|
|
9
9
|
"prettier:diff": "prettier --list-different '**/*.*'",
|
|
10
10
|
"depcheck": "depcheck --ignores='@babel/*,babel-*,depcheck,eslint,jest,prettier,react-art,webpack*' --ignore-bin-package=false --skip-missing",
|
|
11
11
|
"lint": "eslint . && yarn prettier:diff && yarn depcheck",
|
|
12
|
-
"test:android": "jest --config='./__tests__/android/jest.config.js'",
|
|
13
|
-
"test:ios": "jest --config='./__tests__/ios/jest.config.js'",
|
|
14
12
|
"test:web": "jest --config='./__tests__/web/jest.config.js'",
|
|
15
|
-
"test:all": "yarn test:android --coverage && yarn test:ios --coverage && yarn test:web --coverage",
|
|
16
13
|
"prepublishOnly": "yarn transpile",
|
|
17
14
|
"cleanup-dist": "rm -rf dist",
|
|
18
15
|
"transpile": "yarn cleanup-dist && babel src -d dist"
|
|
@@ -28,8 +25,8 @@
|
|
|
28
25
|
"homepage": "https://github.com/newsuk/times-components#readme",
|
|
29
26
|
"devDependencies": {
|
|
30
27
|
"@babel/core": "7.4.4",
|
|
31
|
-
"@times-components/jest-configurator": "2.7.
|
|
32
|
-
"@times-components/jest-serializer": "3.2.
|
|
28
|
+
"@times-components/jest-configurator": "2.7.4",
|
|
29
|
+
"@times-components/jest-serializer": "3.2.28",
|
|
33
30
|
"babel-jest": "24.8.0",
|
|
34
31
|
"babel-plugin-add-react-displayname": "0.0.5",
|
|
35
32
|
"babel-plugin-styled-components": "1.10.6",
|
|
@@ -46,8 +43,8 @@
|
|
|
46
43
|
"@storybook/addon-actions": "5.3.18",
|
|
47
44
|
"@storybook/addon-knobs": "5.3.18",
|
|
48
45
|
"@storybook/react-native": "5.3.18",
|
|
49
|
-
"@times-components/schema": "0.6.
|
|
50
|
-
"@times-components/user-state": "0.1.
|
|
46
|
+
"@times-components/schema": "0.6.26",
|
|
47
|
+
"@times-components/user-state": "0.1.65",
|
|
51
48
|
"apollo-cache-inmemory": "1.5.1",
|
|
52
49
|
"apollo-client": "2.5.1",
|
|
53
50
|
"apollo-link-http": "1.5.14",
|
|
@@ -55,7 +52,6 @@
|
|
|
55
52
|
"react": "16.9.0",
|
|
56
53
|
"react-apollo": "2.5.5",
|
|
57
54
|
"react-helmet-async": "1.0.2",
|
|
58
|
-
"react-test-renderer": "16.9.0",
|
|
59
55
|
"styled-components": "4.3.2"
|
|
60
56
|
},
|
|
61
57
|
"resolutions": {
|
|
@@ -71,5 +67,5 @@
|
|
|
71
67
|
"publishConfig": {
|
|
72
68
|
"access": "public"
|
|
73
69
|
},
|
|
74
|
-
"gitHead": "
|
|
70
|
+
"gitHead": "eec604346ec793e27892f0522ab81cafde40fd9e"
|
|
75
71
|
}
|