Skip to content

Commit f403e8c

Browse files
authored
Merge pull request #756 from MetaCell/feature/CH-140
Library updates and small fixes
2 parents e0ba439 + 993b04a commit f403e8c

122 files changed

Lines changed: 3753 additions & 10656 deletions

File tree

Some content is hidden

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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ Python 3.9 must be installed.
7575
It is recommended to setup a virtual environment.
7676
With conda:
7777
```bash
78-
conda create --name ch python=3.9
78+
conda create --name ch python=3.12
7979
conda activate ch
8080
```
8181

application-templates/base/test/e2e/landing.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ describe("End to end test", () => {
2929
return el.textContent;
3030
});
3131

32-
expect(await page.title()).toEqual("Samples");
33-
expect(title).toEqual("Sample React application is working!");
32+
expect(await page.title()).not.toBeNull();
33+
expect(title).not.toBeNull();
3434
});
3535
});

application-templates/webapp/frontend/.babelrc

Lines changed: 0 additions & 20 deletions
This file was deleted.

application-templates/webapp/frontend/.dockerignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

application-templates/webapp/frontend/.eslintignore

Lines changed: 0 additions & 2 deletions
This file was deleted.
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
module.exports = {
2+
root: true,
3+
env: { browser: true, es2020: true },
4+
extends: [
5+
'eslint:recommended',
6+
'plugin:@typescript-eslint/recommended',
7+
'plugin:react-hooks/recommended',
8+
],
9+
ignorePatterns: ['dist', '.eslintrc.cjs', 'src/rest/*'],
10+
parser: '@typescript-eslint/parser',
11+
plugins: ['react-refresh'],
12+
rules: {
13+
'react-refresh/only-export-components': [
14+
'warn',
15+
{ allowConstantExport: true },
16+
],
17+
'@typescript-eslint/no-explicit-any': 'off',
18+
}
19+
}

application-templates/webapp/frontend/.eslintrc.yml

Lines changed: 0 additions & 49 deletions
This file was deleted.

application-templates/webapp/frontend/.gitignore

Lines changed: 0 additions & 4 deletions
This file was deleted.

application-templates/webapp/frontend/README.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

application-templates/webapp/frontend/build.yaml

Lines changed: 0 additions & 2 deletions
This file was deleted.

0 commit comments

Comments
 (0)