File tree 12 files changed +92
-9
lines changed
12 files changed +92
-9
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change 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
+ # [ 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
+
6
23
# [ 1.2.0] ( https://github.com/ilhan007/npmnext-sample/compare/v1.2.6...v1.2.0 ) (2023-01-21)
7
24
8
25
Original file line number Diff line number Diff line change 2
2
"packages" : [
3
3
" packages/*"
4
4
],
5
- "version" : " 1.2 .0" ,
5
+ "version" : " 1.3 .0" ,
6
6
"npmClient" : " yarn" ,
7
7
"useWorkspaces" : true ,
8
8
"command" : {
Original file line number Diff line number Diff line change 11
11
"build:base" : " cd packages/base && yarn build" ,
12
12
"build:main" : " cd packages/main && yarn build" ,
13
13
"build:fiori" : " cd packages/fiori && yarn build" ,
14
+ "test" : " echo TESTS PASSED" ,
14
15
"release" : " node ./.github/actions/release.js"
15
16
},
16
17
"devDependencies" : {
Original file line number Diff line number Diff line change 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
+ # [ 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
+
6
14
# [ 1.2.0] ( https://github.com/ilhan007/npmnext-sample/compare/v1.2.6...v1.2.0 ) (2023-01-21)
7
15
8
16
** Note:** Version bump only for package @next-level/base
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @next-level/base" ,
3
- "version" : " 1.2.6 " ,
3
+ "version" : " 1.3.0 " ,
4
4
"private" : false ,
5
5
"repository" : {
6
6
"type" : " git" ,
15
15
},
16
16
"author" : " " ,
17
17
"license" : " ISC"
18
- }
18
+ }
Original file line number Diff line number Diff line change 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
+ # [ 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
+
6
23
# [ 1.2.0] ( https://github.com/ilhan007/npmnext-sample/compare/v1.2.6...v1.2.0 ) (2023-01-21)
7
24
8
25
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @next-level/fiori" ,
3
- "version" : " 1.2.6 " ,
3
+ "version" : " 1.3.0 " ,
4
4
"private" : false ,
5
5
"repository" : {
6
6
"type" : " git" ,
12
12
"prepublishOnly" : " npm run build"
13
13
},
14
14
"dependencies" : {
15
- "@next-level/base" : " 1.2.6 "
15
+ "@next-level/base" : " ^1.3.0 "
16
16
},
17
17
"devDependencies" : {
18
18
"copy-and-watch" : " ^0.1.4"
19
19
},
20
20
"author" : " " ,
21
21
"license" : " ISC"
22
- }
22
+ }
Original file line number Diff line number Diff line change @@ -21,6 +21,10 @@ class MyField extends HTMLElement {
21
21
root . appendChild ( input )
22
22
shadow . appendChild ( root ) ;
23
23
}
24
+
25
+ onclick ( ) {
26
+ console . log ( "Hi" )
27
+ }
24
28
}
25
29
26
30
window . customElements . define ( "my-field" , MyField ) ;
Original file line number Diff line number Diff line change 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
+ # [ 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
+
6
14
# [ 1.2.0] ( https://github.com/ilhan007/npmnext-sample/compare/v1.2.6...v1.2.0 ) (2023-01-21)
7
15
8
16
** Note:** Version bump only for package @next-level/main
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @next-level/main" ,
3
- "version" : " 1.2.6 " ,
3
+ "version" : " 1.3.0 " ,
4
4
"private" : false ,
5
5
"repository" : {
6
6
"type" : " git" ,
12
12
"prepublishOnly" : " npm run build"
13
13
},
14
14
"dependencies" : {
15
- "@next-level/base" : " 1.2.6 "
15
+ "@next-level/base" : " ^1.3.0 "
16
16
},
17
17
"devDependencies" : {
18
18
"copy-and-watch" : " ^0.1.4"
19
19
},
20
20
"author" : " " ,
21
21
"license" : " ISC"
22
- }
22
+ }
Original file line number Diff line number Diff line change @@ -21,6 +21,10 @@ class MyField extends HTMLElement {
21
21
root . appendChild ( input )
22
22
shadow . appendChild ( root ) ;
23
23
}
24
+
25
+ click ( ) {
26
+ console . log ( "Hello world" )
27
+ }
24
28
}
25
29
26
30
window . customElements . define ( "my-field" , MyField ) ;
You can’t perform that action at this time.
0 commit comments