@times-components/author-profile 6.8.16 → 6.9.1

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 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
+ ## [6.9.1](https://github.com/newsuk/times-components/compare/@times-components/author-profile@6.9.0...@times-components/author-profile@6.9.1) (2022-08-20)
7
+
8
+ **Note:** Version bump only for package @times-components/author-profile
9
+
10
+
11
+
12
+
13
+
14
+ # [6.9.0](https://github.com/newsuk/times-components/compare/@times-components/author-profile@6.8.17...@times-components/author-profile@6.9.0) (2022-08-18)
15
+
16
+
17
+ ### Features
18
+
19
+ * **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)
20
+
21
+
22
+
23
+
24
+
25
+ ## [6.8.17](https://github.com/newsuk/times-components/compare/@times-components/author-profile@6.8.16...@times-components/author-profile@6.8.17) (2022-08-12)
26
+
27
+ **Note:** Version bump only for package @times-components/author-profile
28
+
29
+
30
+
31
+
32
+
6
33
  ## [6.8.16](https://github.com/newsuk/times-components/compare/@times-components/author-profile@6.8.15...@times-components/author-profile@6.8.16) (2022-08-08)
7
34
 
8
35
  **Note:** Version bump only for package @times-components/author-profile
package/babel.config.js CHANGED
@@ -1,7 +1,14 @@
1
1
  module.exports = api => {
2
2
  api.cache(true);
3
3
  return {
4
- plugins: ["babel-plugin-styled-components"],
5
- presets: ["@babel/preset-env", "@babel/preset-react"]
4
+ plugins: [
5
+ "babel-plugin-styled-components",
6
+ "@babel/plugin-proposal-class-properties"
7
+ ],
8
+ presets: [
9
+ "@babel/preset-env",
10
+ "@babel/preset-react",
11
+ "@babel/preset-typescript"
12
+ ]
6
13
  };
7
14
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@times-components/author-profile",
3
- "version": "6.8.16",
3
+ "version": "6.9.1",
4
4
  "description": "Author profile information along with a list of articles they have written",
5
5
  "main": "dist/author-profile",
6
6
  "dev": "src/author-profile",
@@ -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__/web/jest.config.js'",
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,16 @@
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
- "@times-components/ad": "2.20.3",
35
+ "@times-components/ad": "2.21.0",
38
36
  "@times-components/eslint-config-thetimes": "0.8.18",
39
- "@times-components/jest-configurator-web": "0.7.1",
40
- "@times-components/jest-serializer": "3.3.1",
41
- "@times-components/provider-queries": "2.17.2",
42
- "@times-components/provider-test-tools": "1.26.8",
43
- "@times-components/storybook": "4.4.1",
44
- "@times-components/tealium-utils": "0.7.76",
45
- "@times-components/test-utils": "2.3.11",
46
- "@times-components/webpack-configurator": "2.0.30",
37
+ "@times-components/jest-configurator-web": "0.8.0",
38
+ "@times-components/jest-serializer": "3.4.0",
39
+ "@times-components/provider-queries": "2.18.0",
40
+ "@times-components/provider-test-tools": "1.27.0",
41
+ "@times-components/storybook": "4.5.0",
42
+ "@times-components/tealium-utils": "0.8.0",
43
+ "@times-components/test-utils": "2.4.0",
44
+ "@times-components/webpack-configurator": "2.1.0",
47
45
  "apollo-client": "2.5.1",
48
46
  "babel-jest": "24.8.0",
49
47
  "babel-loader": "8.0.5",
@@ -54,30 +52,25 @@
54
52
  "mockdate": "3.0.5",
55
53
  "prettier": "1.14.3",
56
54
  "react": "16.9.0",
57
- "react-art": "16.6.3",
58
55
  "react-dom": "16.9.0",
59
56
  "react-test-renderer": "16.9.0",
60
57
  "stylelint": "9.4.0",
61
- "stylelint-config-recommended": "2.1.0",
62
- "stylelint-config-styled-components": "0.1.1",
63
- "stylelint-processor-styled-components": "1.3.2",
64
- "webpack": "4.30.0",
65
- "webpack-cli": "3.3.1"
58
+ "webpack": "4.30.0"
66
59
  },
67
60
  "dependencies": {
68
- "@times-components/article-list": "9.10.44",
69
- "@times-components/gradient": "3.3.8",
70
- "@times-components/icons": "2.18.8",
71
- "@times-components/image": "6.12.8",
72
- "@times-components/link": "3.10.12",
73
- "@times-components/markup": "3.6.3",
74
- "@times-components/markup-forest": "1.8.2",
75
- "@times-components/pagination": "3.8.8",
76
- "@times-components/provider": "1.32.9",
77
- "@times-components/responsive": "0.13.3",
78
- "@times-components/tracking": "2.11.1",
79
- "@times-components/ts-styleguide": "1.36.9",
80
- "@times-components/utils": "6.14.4",
61
+ "@times-components/article-list": "9.11.1",
62
+ "@times-components/gradient": "3.4.0",
63
+ "@times-components/icons": "2.19.0",
64
+ "@times-components/image": "6.13.0",
65
+ "@times-components/link": "3.11.0",
66
+ "@times-components/markup": "3.7.0",
67
+ "@times-components/markup-forest": "1.9.0",
68
+ "@times-components/pagination": "3.9.1",
69
+ "@times-components/provider": "1.33.0",
70
+ "@times-components/responsive": "0.14.0",
71
+ "@times-components/tracking": "2.12.1",
72
+ "@times-components/ts-styleguide": "1.37.0",
73
+ "@times-components/utils": "6.15.0",
81
74
  "lodash.get": "4.4.2",
82
75
  "prop-types": "15.7.2",
83
76
  "react-helmet-async": "1.0.2",
@@ -94,5 +87,5 @@
94
87
  "publishConfig": {
95
88
  "access": "public"
96
89
  },
97
- "gitHead": "190bb3b7743af6c8cde3015a4f4744af10f8f593"
90
+ "gitHead": "078d38afd0c7be38fa2d1196d5056b4d53d859f4"
98
91
  }