@spaced-out/ui-design-system 0.0.5 → 0.0.6-beta.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.
|
@@ -53,6 +53,8 @@ jobs:
|
|
|
53
53
|
- name: Bump release version
|
|
54
54
|
if: startsWith(github.event.inputs.release-type, 'pre') != true
|
|
55
55
|
run: |
|
|
56
|
+
git fetch --all
|
|
57
|
+
git pull origin
|
|
56
58
|
yarn build:changelog --release-as $RELEASE_TYPE
|
|
57
59
|
echo "RELEASE_TAG=latest" >> $GITHUB_ENV
|
|
58
60
|
env:
|
|
@@ -63,6 +65,8 @@ jobs:
|
|
|
63
65
|
- name: Bump pre-release version
|
|
64
66
|
if: startsWith(github.event.inputs.release-type, 'pre')
|
|
65
67
|
run: |
|
|
68
|
+
git fetch --all
|
|
69
|
+
git pull origin
|
|
66
70
|
yarn build:changelog --$RELEASE_TYPE beta
|
|
67
71
|
echo "RELEASE_TAG=beta" >> $GITHUB_ENV
|
|
68
72
|
env:
|
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### 0.0.6-beta.1 (2022-11-29)
|
|
6
|
+
|
|
7
|
+
### 0.0.6-beta.0 (2022-11-29)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Features
|
|
11
|
+
|
|
12
|
+
* script change to fetch all commits ([53a08cd](https://github.com/spaced-out/ui-design-system/commit/53a08cdbab66c32784bf672934ac6faa712d3996))
|
|
13
|
+
|
|
5
14
|
### 0.0.5 (2022-11-29)
|
|
6
15
|
|
|
7
16
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spaced-out/ui-design-system",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6-beta.1",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"description": "Sense UI components library",
|
|
6
6
|
"author": {
|
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
"prepublishOnly": "yarn build",
|
|
18
18
|
"release": "yarn build:changelog && yarn publish",
|
|
19
19
|
"build:changelog": "standard-version",
|
|
20
|
+
"build:no-bump-changelog": "standard-version --skip.bump --skip.commit --skip.tag",
|
|
20
21
|
"flow": "flow",
|
|
21
22
|
"flow:all": "flow --show-all-errors",
|
|
22
23
|
"flow:json": "flow --json --pretty",
|