@cosmotech/core 1.15.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.
@@ -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 }}
package/.prettierrc.json CHANGED
@@ -1,5 +1,8 @@
1
1
  {
2
+ "plugins": ["@trivago/prettier-plugin-sort-imports"],
2
3
  "singleQuote": true,
3
4
  "printWidth": 120,
4
- "trailingComma": "es5"
5
+ "trailingComma": "es5",
6
+ "importOrder": ["react", "prop-types", "<THIRD_PARTY_MODULES>", "^@cosmotech/(.*)$", "^[./]"],
7
+ "importOrderSeparation": false
5
8
  }
Binary file
package/.yarnrc.yml ADDED
@@ -0,0 +1 @@
1
+ nodeLinker: node-modules
package/CHANGELOG.md CHANGED
@@ -1,3 +1,14 @@
1
+ ## **1.16.1** <sub><sup>2024-07-15 (e29781c...222154e)</sup></sub>
2
+
3
+ - update dependencies
4
+
5
+ ## **1.16.0**&emsp;<sub><sup>2024-01-11 (93d6f7cbafa3dcd4064a49ec7f85ec64984405da...dba7f30759195e5f30ec317027eeea48d88ce17e)</sup></sub>
6
+
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))
11
+
1
12
  ## **1.15.0** <sub><sup>2023-10-26 (c41f4a6...e39934b)</sup></sub>
2
13
 
3
14
  ### Features