@cosmotech/core 1.16.0 → 1.17.0

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.
@@ -9,12 +9,19 @@ on:
9
9
  - '**'
10
10
  jobs:
11
11
  eslint:
12
+ if: ${{ ! startsWith(github.head_ref, 'dependabot/') }}
12
13
  runs-on: ubuntu-latest
13
14
  steps:
14
- - uses: actions/checkout@v3
15
- - uses: actions/setup-node@v3
15
+ - name: Checkout git repository
16
+ uses: actions/checkout@v4
17
+ - name: Enable Corepack
18
+ run: corepack enable
19
+ - name: Setup Node
20
+ uses: actions/setup-node@v4
16
21
  with:
17
22
  node-version: '18'
18
- - run: yarn install && yarn eslint .
23
+ cache: 'yarn'
24
+ - name: Run eslint
25
+ run: yarn install && yarn eslint .
19
26
  env:
20
27
  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Binary file
package/.yarnrc.yml ADDED
@@ -0,0 +1 @@
1
+ nodeLinker: node-modules
package/CHANGELOG.md CHANGED
@@ -1,11 +1,19 @@
1
- ## **1.15.1**&emsp;<sub><sup>2024-01-11 (93d6f7cbafa3dcd4064a49ec7f85ec64984405da...dba7f30759195e5f30ec317027eeea48d88ce17e)</sup></sub>
1
+ ## **1.17.0** <sub><sup>2024-07-29 (05224df...05224df)</sup></sub>
2
2
 
3
- ### Bug Fixes
3
+ ### Features
4
4
 
5
- - fix unexpected unempty value when field is filled with multispaces ([867c3a6](https://github.com/Cosmo-Tech/webapp-component-core/commit/867c3a6f26e344a68c1ee0940254731e1a2e45fe))
6
- - fix useless spaces in some table parameters error message ([405797d](https://github.com/Cosmo-Tech/webapp-component-core/commit/405797d0742845b645b3eb462e1d16ce9d5be7b5))
5
+ - add setConfig method to AuthDev module ([05224df](https://github.com/Cosmo-Tech/webapp-component-core/commit/05224df))
7
6
 
8
- <br>
7
+ ## **1.16.1** <sub><sup>2024-07-15 (e29781c...222154e)</sup></sub>
8
+
9
+ - update dependencies
10
+
11
+ ## **1.16.0**&emsp;<sub><sup>2024-01-11 (93d6f7cbafa3dcd4064a49ec7f85ec64984405da...dba7f30759195e5f30ec317027eeea48d88ce17e)</sup></sub>
12
+
13
+ ### Bug Fixes
14
+
15
+ - trim spaces in cells when parsing XLSX files ([867c3a6](https://github.com/Cosmo-Tech/webapp-component-core/commit/867c3a6f26e344a68c1ee0940254731e1a2e45fe))
16
+ - fix formatting of Table error messages ([405797d](https://github.com/Cosmo-Tech/webapp-component-core/commit/405797d0742845b645b3eb462e1d16ce9d5be7b5))
9
17
 
10
18
  ## **1.15.0** <sub><sup>2023-10-26 (c41f4a6...e39934b)</sup></sub>
11
19