Skip to content

Commit 69af3e2

Browse files
authored
Merge branch 'main' into dependabot/npm_and_yarn/minimatch-3.1.2
2 parents 6746633 + a51f4f5 commit 69af3e2

12 files changed

+92
-9
lines changed

.github/workflows/checks.yaml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Checks # Workflow name
2+
3+
on:
4+
pull_request:
5+
types: [opened]
6+
7+
jobs: # A workflow can have multiple jobs
8+
checks: # Name of the job
9+
runs-on: ubuntu-latest # Instance type where job will run
10+
steps:
11+
- uses: actions/checkout@v3
12+
- uses: actions/setup-node@v3
13+
with:
14+
node-version: 16
15+
cache: 'yarn'
16+
17+
- name: Install
18+
run: yarn
19+
20+
- name: Build
21+
run: yarn build
22+
23+
- name: Test
24+
run: yarn test

CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,23 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [1.3.0](https://github.com/ilhan007/npmnext-sample/compare/v1.2.6...v1.3.0) (2023-01-21)
7+
8+
9+
### Bug Fixes
10+
11+
* **Field:** remove comment ([4387e87](https://github.com/ilhan007/npmnext-sample/commit/4387e87243a3ab9a9bf921142415764c6ad106bf))
12+
13+
14+
### Features
15+
16+
* add click handler ([6f77541](https://github.com/ilhan007/npmnext-sample/commit/6f77541ad163bf31910be037bf648207cf743e6f))
17+
* new component ([fe4b0ca](https://github.com/ilhan007/npmnext-sample/commit/fe4b0ca8beb5504305bc432f404f6338ad5f6a9a))
18+
19+
20+
21+
22+
623
# [1.2.0](https://github.com/ilhan007/npmnext-sample/compare/v1.2.6...v1.2.0) (2023-01-21)
724

825

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"packages": [
33
"packages/*"
44
],
5-
"version": "1.2.0",
5+
"version": "1.3.0",
66
"npmClient": "yarn",
77
"useWorkspaces": true,
88
"command": {

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"build:base": "cd packages/base && yarn build",
1212
"build:main": "cd packages/main && yarn build",
1313
"build:fiori": "cd packages/fiori && yarn build",
14+
"test": "echo TESTS PASSED",
1415
"release": "node ./.github/actions/release.js"
1516
},
1617
"devDependencies": {

packages/base/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [1.3.0](https://github.com/ilhan007/npmnext-sample/compare/v1.2.6...v1.3.0) (2023-01-21)
7+
8+
**Note:** Version bump only for package @next-level/base
9+
10+
11+
12+
13+
614
# [1.2.0](https://github.com/ilhan007/npmnext-sample/compare/v1.2.6...v1.2.0) (2023-01-21)
715

816
**Note:** Version bump only for package @next-level/base

packages/base/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@next-level/base",
3-
"version": "1.2.6",
3+
"version": "1.3.0",
44
"private": false,
55
"repository": {
66
"type": "git",
@@ -15,4 +15,4 @@
1515
},
1616
"author": "",
1717
"license": "ISC"
18-
}
18+
}

packages/fiori/CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,23 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [1.3.0](https://github.com/ilhan007/npmnext-sample/compare/v1.2.6...v1.3.0) (2023-01-21)
7+
8+
9+
### Bug Fixes
10+
11+
* **Field:** remove comment ([4387e87](https://github.com/ilhan007/npmnext-sample/commit/4387e87243a3ab9a9bf921142415764c6ad106bf))
12+
13+
14+
### Features
15+
16+
* add click handler ([6f77541](https://github.com/ilhan007/npmnext-sample/commit/6f77541ad163bf31910be037bf648207cf743e6f))
17+
* new component ([fe4b0ca](https://github.com/ilhan007/npmnext-sample/commit/fe4b0ca8beb5504305bc432f404f6338ad5f6a9a))
18+
19+
20+
21+
22+
623
# [1.2.0](https://github.com/ilhan007/npmnext-sample/compare/v1.2.6...v1.2.0) (2023-01-21)
724

825

packages/fiori/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@next-level/fiori",
3-
"version": "1.2.6",
3+
"version": "1.3.0",
44
"private": false,
55
"repository": {
66
"type": "git",
@@ -12,11 +12,11 @@
1212
"prepublishOnly": "npm run build"
1313
},
1414
"dependencies": {
15-
"@next-level/base": "1.2.6"
15+
"@next-level/base": "^1.3.0"
1616
},
1717
"devDependencies": {
1818
"copy-and-watch": "^0.1.4"
1919
},
2020
"author": "",
2121
"license": "ISC"
22-
}
22+
}

packages/fiori/src/Field.js

+4
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@ class MyField extends HTMLElement {
2121
root.appendChild(input)
2222
shadow.appendChild(root);
2323
}
24+
25+
onclick() {
26+
console.log("Hi")
27+
}
2428
}
2529

2630
window.customElements.define("my-field", MyField);

packages/main/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [1.3.0](https://github.com/ilhan007/npmnext-sample/compare/v1.2.6...v1.3.0) (2023-01-21)
7+
8+
**Note:** Version bump only for package @next-level/main
9+
10+
11+
12+
13+
614
# [1.2.0](https://github.com/ilhan007/npmnext-sample/compare/v1.2.6...v1.2.0) (2023-01-21)
715

816
**Note:** Version bump only for package @next-level/main

packages/main/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@next-level/main",
3-
"version": "1.2.6",
3+
"version": "1.3.0",
44
"private": false,
55
"repository": {
66
"type": "git",
@@ -12,11 +12,11 @@
1212
"prepublishOnly": "npm run build"
1313
},
1414
"dependencies": {
15-
"@next-level/base": "1.2.6"
15+
"@next-level/base": "^1.3.0"
1616
},
1717
"devDependencies": {
1818
"copy-and-watch": "^0.1.4"
1919
},
2020
"author": "",
2121
"license": "ISC"
22-
}
22+
}

packages/main/src/Field.js

+4
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@ class MyField extends HTMLElement {
2121
root.appendChild(input)
2222
shadow.appendChild(root);
2323
}
24+
25+
click() {
26+
console.log("Hello world")
27+
}
2428
}
2529

2630
window.customElements.define("my-field", MyField);

0 commit comments

Comments
 (0)