@times-components/article-image 7.11.8 → 7.12.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 +27 -0
- package/babel.config.js +5 -1
- package/package.json +15 -24
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,33 @@
|
|
|
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
|
+
## [7.12.2](https://github.com/newsuk/times-components/compare/@times-components/article-image@7.12.1...@times-components/article-image@7.12.2) (2022-09-06)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @times-components/article-image
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [7.12.1](https://github.com/newsuk/times-components/compare/@times-components/article-image@7.12.0...@times-components/article-image@7.12.1) (2022-09-06)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @times-components/article-image
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
# [7.12.0](https://github.com/newsuk/times-components/compare/@times-components/article-image@7.11.8...@times-components/article-image@7.12.0) (2022-08-18)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Features
|
|
26
|
+
|
|
27
|
+
* **TDP-1712:** remove react-native foreverrrrr ([#3064](https://github.com/newsuk/times-components/issues/3064)) ([2a20cb5](https://github.com/newsuk/times-components/commit/2a20cb5abc10a4e7ca2d62487967f8fcf4eccb62)), closes [#3037](https://github.com/newsuk/times-components/issues/3037) [#3045](https://github.com/newsuk/times-components/issues/3045) [#3050](https://github.com/newsuk/times-components/issues/3050) [#3056](https://github.com/newsuk/times-components/issues/3056) [#3057](https://github.com/newsuk/times-components/issues/3057) [#3066](https://github.com/newsuk/times-components/issues/3066) [#3065](https://github.com/newsuk/times-components/issues/3065) [#3037](https://github.com/newsuk/times-components/issues/3037) [#3045](https://github.com/newsuk/times-components/issues/3045) [#3045](https://github.com/newsuk/times-components/issues/3045) [#3056](https://github.com/newsuk/times-components/issues/3056) [#3066](https://github.com/newsuk/times-components/issues/3066) [#3069](https://github.com/newsuk/times-components/issues/3069) [#3068](https://github.com/newsuk/times-components/issues/3068) [#3070](https://github.com/newsuk/times-components/issues/3070) [#3072](https://github.com/newsuk/times-components/issues/3072) [#3073](https://github.com/newsuk/times-components/issues/3073) [#3071](https://github.com/newsuk/times-components/issues/3071) [#3074](https://github.com/newsuk/times-components/issues/3074) [#3076](https://github.com/newsuk/times-components/issues/3076) [#3079](https://github.com/newsuk/times-components/issues/3079) [#3078](https://github.com/newsuk/times-components/issues/3078) [#3083](https://github.com/newsuk/times-components/issues/3083) [#3087](https://github.com/newsuk/times-components/issues/3087) [#3091](https://github.com/newsuk/times-components/issues/3091) [#3096](https://github.com/newsuk/times-components/issues/3096) [#3102](https://github.com/newsuk/times-components/issues/3102) [#3105](https://github.com/newsuk/times-components/issues/3105) [#3108](https://github.com/newsuk/times-components/issues/3108) [#3111](https://github.com/newsuk/times-components/issues/3111) [#3112](https://github.com/newsuk/times-components/issues/3112) [#3113](https://github.com/newsuk/times-components/issues/3113) [#3114](https://github.com/newsuk/times-components/issues/3114) [#3120](https://github.com/newsuk/times-components/issues/3120) [#3119](https://github.com/newsuk/times-components/issues/3119) [#3112](https://github.com/newsuk/times-components/issues/3112) [#3126](https://github.com/newsuk/times-components/issues/3126) [#3112](https://github.com/newsuk/times-components/issues/3112) [#3126](https://github.com/newsuk/times-components/issues/3126) [#3127](https://github.com/newsuk/times-components/issues/3127) [#3116](https://github.com/newsuk/times-components/issues/3116) [#3128](https://github.com/newsuk/times-components/issues/3128) [#3132](https://github.com/newsuk/times-components/issues/3132) [#3133](https://github.com/newsuk/times-components/issues/3133)
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
6
33
|
## [7.11.8](https://github.com/newsuk/times-components/compare/@times-components/article-image@7.11.7...@times-components/article-image@7.11.8) (2022-08-12)
|
|
7
34
|
|
|
8
35
|
**Note:** Version bump only for package @times-components/article-image
|
package/babel.config.js
CHANGED
|
@@ -2,6 +2,10 @@ module.exports = api => {
|
|
|
2
2
|
api.cache(true);
|
|
3
3
|
return {
|
|
4
4
|
plugins: ["babel-plugin-styled-components"],
|
|
5
|
-
presets: [
|
|
5
|
+
presets: [
|
|
6
|
+
"@babel/preset-env",
|
|
7
|
+
"@babel/preset-react",
|
|
8
|
+
"@babel/preset-typescript"
|
|
9
|
+
]
|
|
6
10
|
};
|
|
7
11
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@times-components/article-image",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.12.2",
|
|
4
4
|
"description": "Article Image",
|
|
5
5
|
"main": "dist/article-image",
|
|
6
6
|
"dev": "src/article-image",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"prettier:diff": "prettier --list-different '**/*.*'",
|
|
10
10
|
"depcheck": "depcheck --ignores='@babel/*,babel-*,depcheck,eslint,jest,prettier,react-art,stylelint*,webpack*' --ignore-bin-package=false --skip-missing",
|
|
11
11
|
"lint": "eslint . && stylelint . && yarn prettier:diff && yarn depcheck",
|
|
12
|
-
"test:web": "jest --config='./__tests__/
|
|
12
|
+
"test:web": "jest --config='./__tests__/jest.config.js'",
|
|
13
13
|
"prepublishOnly": "yarn transpile && yarn bundle",
|
|
14
14
|
"watch": "watch 'yarn bundle' ./src --ignoreDotFiles --ignoreUnreadable",
|
|
15
15
|
"cleanup-dist": "rm -rf dist",
|
|
@@ -32,18 +32,14 @@
|
|
|
32
32
|
"homepage": "https://github.com/newsuk/times-components#readme",
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@babel/core": "7.4.4",
|
|
35
|
-
"@babel/preset-env": "7.4.4",
|
|
36
|
-
"@babel/preset-react": "7.9.1",
|
|
37
35
|
"@times-components/eslint-config-thetimes": "0.8.18",
|
|
38
|
-
"@times-components/jest-configurator-web": "0.
|
|
39
|
-
"@times-components/jest-serializer": "3.
|
|
40
|
-
"@times-components/storybook": "4.
|
|
41
|
-
"@times-components/test-utils": "2.
|
|
42
|
-
"@times-components/webpack-configurator": "2.0
|
|
36
|
+
"@times-components/jest-configurator-web": "0.8.0",
|
|
37
|
+
"@times-components/jest-serializer": "3.4.0",
|
|
38
|
+
"@times-components/storybook": "4.5.0",
|
|
39
|
+
"@times-components/test-utils": "2.4.0",
|
|
40
|
+
"@times-components/webpack-configurator": "2.1.0",
|
|
43
41
|
"babel-jest": "24.8.0",
|
|
44
42
|
"babel-loader": "8.0.5",
|
|
45
|
-
"babel-plugin-add-react-displayname": "0.0.5",
|
|
46
|
-
"babel-plugin-styled-components": "1.10.6",
|
|
47
43
|
"depcheck": "0.6.9",
|
|
48
44
|
"enzyme": "3.9.0",
|
|
49
45
|
"eslint": "5.9.0",
|
|
@@ -51,22 +47,17 @@
|
|
|
51
47
|
"jest-styled-components": "6.3.1",
|
|
52
48
|
"prettier": "1.14.3",
|
|
53
49
|
"react": "16.9.0",
|
|
54
|
-
"react-art": "16.6.3",
|
|
55
50
|
"react-dom": "16.9.0",
|
|
56
51
|
"stylelint": "9.4.0",
|
|
57
|
-
"
|
|
58
|
-
"stylelint-config-styled-components": "0.1.1",
|
|
59
|
-
"stylelint-processor-styled-components": "1.3.2",
|
|
60
|
-
"webpack": "4.30.0",
|
|
61
|
-
"webpack-cli": "3.3.1"
|
|
52
|
+
"webpack": "4.30.0"
|
|
62
53
|
},
|
|
63
54
|
"dependencies": {
|
|
64
|
-
"@times-components/caption": "3.
|
|
65
|
-
"@times-components/context": "1.
|
|
66
|
-
"@times-components/image": "6.
|
|
67
|
-
"@times-components/responsive": "0.
|
|
68
|
-
"@times-components/ts-styleguide": "1.
|
|
69
|
-
"@times-components/utils": "6.
|
|
55
|
+
"@times-components/caption": "3.3.0",
|
|
56
|
+
"@times-components/context": "1.10.0",
|
|
57
|
+
"@times-components/image": "6.13.2",
|
|
58
|
+
"@times-components/responsive": "0.14.0",
|
|
59
|
+
"@times-components/ts-styleguide": "1.37.0",
|
|
60
|
+
"@times-components/utils": "6.15.0",
|
|
70
61
|
"prop-types": "15.7.2",
|
|
71
62
|
"styled-components": "4.3.2"
|
|
72
63
|
},
|
|
@@ -81,5 +72,5 @@
|
|
|
81
72
|
"publishConfig": {
|
|
82
73
|
"access": "public"
|
|
83
74
|
},
|
|
84
|
-
"gitHead": "
|
|
75
|
+
"gitHead": "a4cb8f16b75e0d54adf6ad9e23bb6cce1dda01fc"
|
|
85
76
|
}
|