Skip to content
This repository was archived by the owner on Feb 15, 2025. It is now read-only.

Commit 051d81c

Browse files
authored
Merge pull request #13 from agile-ts/develop
Develop
2 parents a15c81e + 00729bc commit 051d81c

File tree

13 files changed

+34
-94
lines changed

13 files changed

+34
-94
lines changed

.github/workflows/label-pr.yaml

Lines changed: 0 additions & 14 deletions
This file was deleted.

.github/workflows/release.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,12 @@ jobs:
2323
run: yarn install
2424

2525
# Create Release Pull Request
26-
- name: 📤 Create Pull Request
26+
- name: 📤 Create Release Pull Request or Publish to NPM
2727
uses: changesets/action@master
2828
with:
2929
publish: yarn release
30+
commit: Version Release
31+
title: Next Release
3032
env:
3133
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3234
NPM_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}

.github/workflows/test-all-packages.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ jobs:
3030

3131
# Build Packages for Testing
3232
- name: 🔨 Build Packages
33-
run: yarn run build
33+
run: yarn run build:test

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,12 @@
77
"syncDir": "dist",
88
"scripts": {
99
"build": "lerna run build",
10+
"build:test": "lerna run build:test",
1011
"watch": "lerna run watch",
1112
"test": "jest",
1213
"release": "lerna run build && changeset publish",
13-
"new-version": "lerna version --conventional-commits --no-git-tag-version --yes",
14+
"create-verion": "changeset",
15+
"bump-version": "changeset version",
1416
"dev-publish": "lerna run build && lerna run dev-publish",
1517
"dev-push": "lerna run build && lerna run dev-push",
1618
"package-install": "lerna exec npm install"

packages/mono-one/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Change Log
22

3+
## 2.0.0
4+
5+
### Major Changes
6+
7+
- some changes
8+
39
## 1.1.0
410

511
### Minor Changes

packages/mono-one/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bennodev/mono-one",
3-
"version": "1.1.0",
3+
"version": "2.0.0",
44
"author": "BennoDev",
55
"license": "ISC",
66
"homepage": "https://agile-ts.org/",

packages/mono-one/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ export default class MonoOne {
1111
}
1212

1313
public getRandomString():string {
14-
return "random8";
14+
return "random10";
1515
}
1616
}

packages/mono-three/CHANGELOG.md

Lines changed: 6 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,74 +1,46 @@
11
# Change Log
22

3+
## 2.0.0
4+
5+
### Major Changes
6+
7+
- some changes
8+
39
All notable changes to this project will be documented in this file.
410
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
511

612
## 1.0.5 (2020-12-30)
713

8-
9-
1014
## 1.0.1 (2020-12-10)
1115

12-
13-
1416
## 0.0.2 (2020-12-10)
1517

16-
17-
1818
## 0.0.1 (2020-12-10)
1919

2020
**Note:** Version bump only for package @bennodev/mono-three
2121

22-
23-
24-
25-
2622
## 1.0.4 (2020-12-30)
2723

28-
29-
3024
## 1.0.1 (2020-12-10)
3125

32-
33-
3426
## 0.0.2 (2020-12-10)
3527

36-
37-
3828
## 0.0.1 (2020-12-10)
3929

4030
**Note:** Version bump only for package @bennodev/mono-three
4131

42-
43-
44-
45-
46-
4732
## 1.0.3 (2020-12-10)
4833

4934
**Note:** Version bump only for package @bennodev/mono-three
5035

51-
52-
53-
54-
5536
## 1.0.2 (2020-12-10)
5637

5738
**Note:** Version bump only for package @bennodev/mono-three
5839

59-
60-
61-
62-
6340
## [1.0.1](https://github.com/agile-ts/github-actions-test/compare/v0.0.2...v1.0.1) (2020-12-10)
6441

6542
**Note:** Version bump only for package @bennodev/mono-three
6643

67-
68-
69-
70-
71-
7244
## 0.0.2 (2020-12-10)
7345

7446
**Note:** Version bump only for package @bennodev/mono-three

packages/mono-three/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bennodev/mono-three",
3-
"version": "1.0.5",
3+
"version": "2.0.0",
44
"author": "BennoDev",
55
"license": "ISC",
66
"homepage": "https://agile-ts.org/",

packages/mono-three/src/index.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,8 @@ export default class MonoThree {
99
this.name = value;
1010
return this;
1111
}
12+
13+
public getRandomString():string {
14+
return "random0";
15+
}
1216
}

packages/mono-two/CHANGELOG.md

Lines changed: 6 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,79 +1,48 @@
11
# Change Log
22

3+
## 2.0.0
4+
5+
### Major Changes
6+
7+
- some changes
8+
39
All notable changes to this project will be documented in this file.
410
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
511

612
## 1.0.4 (2020-12-30)
713

8-
9-
1014
## 1.0.1 (2020-12-10)
1115

12-
13-
1416
## 0.0.2 (2020-12-10)
1517

16-
17-
1818
## 0.0.1 (2020-12-10)
1919

2020
**Note:** Version bump only for package @bennodev/mono-two
2121

22-
23-
24-
25-
2622
## 1.0.3 (2020-12-30)
2723

28-
29-
3024
## 1.0.1 (2020-12-10)
3125

32-
33-
3426
## 0.0.2 (2020-12-10)
3527

36-
37-
3828
## 0.0.1 (2020-12-10)
3929

4030
**Note:** Version bump only for package @bennodev/mono-two
4131

42-
43-
44-
45-
46-
4732
## 1.0.2 (2020-12-11)
4833

49-
50-
5134
## 1.0.1 (2020-12-10)
5235

53-
54-
5536
## 0.0.2 (2020-12-10)
5637

57-
58-
5938
## 0.0.1 (2020-12-10)
6039

6140
**Note:** Version bump only for package @bennodev/mono-two
6241

63-
64-
65-
66-
67-
6842
## [1.0.1](https://github.com/agile-ts/github-actions-test/compare/v0.0.2...v1.0.1) (2020-12-10)
6943

7044
**Note:** Version bump only for package @bennodev/mono-two
7145

72-
73-
74-
75-
76-
7746
## 0.0.2 (2020-12-10)
7847

7948
**Note:** Version bump only for package @bennodev/mono-two

packages/mono-two/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bennodev/mono-two",
3-
"version": "1.0.4",
3+
"version": "2.0.0",
44
"author": "BennoDev",
55
"license": "ISC",
66
"homepage": "https://agile-ts.org/",

packages/mono-two/src/index.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ export default class MonoTwo {
1010
return this;
1111
}
1212

13-
1413
public getRandomString():string {
15-
return "random10";
14+
return "random11";
1615
}
1716
}

0 commit comments

Comments
 (0)