@simplybusiness/mobius 3.4.4 → 3.4.5

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -17,6 +17,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
17
17
 
18
18
  ## [3.4.3] - 2023-03-28
19
19
 
20
+ ### Changed
21
+
22
+ - Updated Turbo to 1.8.5
23
+ - Updated Storybook tasks to utilise Turbo cache
24
+
20
25
  ### Added
21
26
 
22
27
  - Added missing secondary colour variable to On The Tools (ott) partner theme.
@@ -217,6 +222,7 @@ Additionally, mobius and themes are available on the public NPM registry and can
217
222
 
218
223
  ## Github Links
219
224
 
225
+ [3.4.5]: https://github.com/simplybusiness/mobius/releases/tag/v3.4.5
220
226
  [3.4.4]: https://github.com/simplybusiness/mobius/releases/tag/v3.4.4
221
227
  [3.4.3]: https://github.com/simplybusiness/mobius/releases/tag/v3.4.3
222
228
  [3.4.2]: https://github.com/simplybusiness/mobius/releases/tag/v3.4.2
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@simplybusiness/mobius",
3
3
  "license": "UNLICENSED",
4
- "version": "3.4.4",
4
+ "version": "3.4.5",
5
5
  "description": "Core library of Mobius react components",
6
6
  "repository": {
7
7
  "type": "git",
@@ -24,15 +24,15 @@
24
24
  }
25
25
  },
26
26
  "scripts": {
27
+ "build": "turbo run turbo:build",
27
28
  "build:cjs": "tsc",
28
29
  "build:esm": "tsc -p tsconfig.esm.json",
29
- "build": "yarn clean-dist && yarn build:cjs && yarn build:esm && yarn extract-api",
30
+ "build:extract-api": "api-extractor run",
30
31
  "lint": "eslint --ext .tsx,.ts,.js,.jsx,.mjs .",
31
32
  "test": "NODE_OPTIONS=--experimental-vm-modules jest",
32
33
  "test:coverage": "NODE_OPTIONS=--experimental-vm-modules jest --collect-coverage",
33
34
  "check-types": "tsc --noEmit --incremental --emitDeclarationOnly false --pretty",
34
- "extract-api": "api-extractor run",
35
- "clean-dist": "rm -rf dist/",
35
+ "clean-dist": "rm -rf dist",
36
36
  "release:major": "../../bin/version.sh major",
37
37
  "release:minor": "../../bin/version.sh minor",
38
38
  "release:patch": "../../bin/version.sh patch",