@cosmotech/core 1.16.0 → 1.16.1
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.
- package/.github/workflows/eslint.yml +10 -3
- package/.yarn/install-state.gz +0 -0
- package/.yarnrc.yml +1 -0
- package/CHANGELOG.md +7 -5
- package/dist/index.cjs.js +3056 -3909
- package/dist/index.esm.js +3056 -3909
- package/package.json +28 -28
|
@@ -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
|
-
-
|
|
15
|
-
|
|
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
|
-
|
|
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,13 @@
|
|
|
1
|
-
## **1.
|
|
1
|
+
## **1.16.1** <sub><sup>2024-07-15 (e29781c...222154e)</sup></sub>
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
- update dependencies
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
- fix useless spaces in some table parameters error message ([405797d](https://github.com/Cosmo-Tech/webapp-component-core/commit/405797d0742845b645b3eb462e1d16ce9d5be7b5))
|
|
5
|
+
## **1.16.0** <sub><sup>2024-01-11 (93d6f7cbafa3dcd4064a49ec7f85ec64984405da...dba7f30759195e5f30ec317027eeea48d88ce17e)</sup></sub>
|
|
7
6
|
|
|
8
|
-
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- trim spaces in cells when parsing XLSX files ([867c3a6](https://github.com/Cosmo-Tech/webapp-component-core/commit/867c3a6f26e344a68c1ee0940254731e1a2e45fe))
|
|
10
|
+
- fix formatting of Table error messages ([405797d](https://github.com/Cosmo-Tech/webapp-component-core/commit/405797d0742845b645b3eb462e1d16ce9d5be7b5))
|
|
9
11
|
|
|
10
12
|
## **1.15.0** <sub><sup>2023-10-26 (c41f4a6...e39934b)</sup></sub>
|
|
11
13
|
|