Skip to content

Commit b9ef122

Browse files
authored
Merge pull request #46 from netgrif/next
Release 2.1.0
2 parents b18604a + 968e1a1 commit b9ef122

File tree

109 files changed

+2066
-9636
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

109 files changed

+2066
-9636
lines changed

.github/workflows/master-build.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,15 @@ jobs:
1313
build:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717
with:
1818
fetch-depth: 0
1919

20-
- name: Use Node.js 18
21-
uses: actions/setup-node@v3
20+
- name: Use Node.js 20
21+
uses: actions/setup-node@v4
2222
with:
23-
node-version: 18
24-
cache: 'npm'
25-
- run: npm ci
23+
node-version: 20
24+
- run: npm i
2625
- run: npm run build
2726
- run: npm run test
2827

.github/workflows/release-build.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -11,24 +11,24 @@ jobs:
1111
build:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v3
15-
- uses: actions/setup-node@v3
14+
- uses: actions/checkout@v4
15+
- uses: actions/setup-node@v4
1616
with:
17-
node-version: 18
18-
- run: npm ci
17+
node-version: 20
18+
- run: npm i
1919
- run: npm run build
2020
- run: npm run test
2121

2222
publish-npm:
2323
needs: build
2424
runs-on: ubuntu-latest
2525
steps:
26-
- uses: actions/checkout@v3
27-
- uses: actions/setup-node@v3
26+
- uses: actions/checkout@v4
27+
- uses: actions/setup-node@v4
2828
with:
29-
node-version: 18
29+
node-version: 20
3030
registry-url: https://registry.npmjs.org/
31-
- run: npm ci
31+
- run: npm i
3232
- run: npm run build
3333
- run: npm publish --access public
3434
env:
@@ -41,12 +41,12 @@ jobs:
4141
contents: read
4242
packages: write
4343
steps:
44-
- uses: actions/checkout@v3
45-
- uses: actions/setup-node@v3
44+
- uses: actions/checkout@v4
45+
- uses: actions/setup-node@v4
4646
with:
47-
node-version: 18
47+
node-version: 20
4848
registry-url: https://npm.pkg.github.com
49-
- run: npm ci
49+
- run: npm i
5050
- run: npm run build
5151
- run: npm publish --access public
5252
env:

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -197,3 +197,4 @@ fabric.properties
197197
# Android studio 3.1+ serialized cache file
198198
.idea/caches/build_file_checksums.ser
199199

200+
/package-lock.json

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html)
66

7+
## [2.1.0](https://github.com/netgrif/petriflow.js/releases/tag/v2.1.0) (2024-07-02)
8+
9+
### Changed
10+
- [PF-58] Action indentation
11+
12+
713
## [2.0.0](https://github.com/netgrif/petriflow.js/releases/tag/v2.0.0) (2023-11-05)
814

915
### Added

docs/assets/highlight.css

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
:root {
2-
--light-hl-0: #000000;
3-
--dark-hl-0: #D4D4D4;
4-
--light-hl-1: #0000FF;
5-
--dark-hl-1: #569CD6;
6-
--light-hl-2: #0070C1;
7-
--dark-hl-2: #4FC1FF;
8-
--light-hl-3: #795E26;
9-
--dark-hl-3: #DCDCAA;
10-
--light-hl-4: #A31515;
11-
--dark-hl-4: #CE9178;
2+
--light-hl-0: #795E26;
3+
--dark-hl-0: #DCDCAA;
4+
--light-hl-1: #000000;
5+
--dark-hl-1: #D4D4D4;
6+
--light-hl-2: #A31515;
7+
--dark-hl-2: #CE9178;
8+
--light-hl-3: #0000FF;
9+
--dark-hl-3: #569CD6;
10+
--light-hl-4: #0070C1;
11+
--dark-hl-4: #4FC1FF;
1212
--light-hl-5: #AF00DB;
1313
--dark-hl-5: #C586C0;
1414
--light-hl-6: #001080;
@@ -39,7 +39,7 @@
3939
--code-background: var(--dark-code-background);
4040
} }
4141

42-
body.light {
42+
:root[data-theme='light'] {
4343
--hl-0: var(--light-hl-0);
4444
--hl-1: var(--light-hl-1);
4545
--hl-2: var(--light-hl-2);
@@ -50,7 +50,7 @@ body.light {
5050
--code-background: var(--light-code-background);
5151
}
5252

53-
body.dark {
53+
:root[data-theme='dark'] {
5454
--hl-0: var(--dark-hl-0);
5555
--hl-1: var(--dark-hl-1);
5656
--hl-2: var(--dark-hl-2);

0 commit comments

Comments
 (0)