Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Some fix to be able to integrate in c2cgeoportal #9472

Merged
merged 1 commit into from
Sep 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,4 @@
/private.key
/pyproject.toml
/requirements.txt
/cypress
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,8 @@
"chokidar": "3.6.0",
"chromatic": "11.7.1",
"co": "4.6.0",
"color-rgba": "3.0.0",
"color-space": "2.0.1",
"commander": "12.1.0",
"console-control-strings": "1.1.0",
"copy-webpack-plugin": "12.0.2",
Expand Down
3 changes: 3 additions & 0 deletions src/auth/component.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@
// IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

/* eslint-disable @typescript-eslint/no-unsafe-member-access */
/* eslint-disable @typescript-eslint/no-unsafe-call */

import gmfAuthenticationService from 'ngeo/auth/service';

import configuration, {Configuration} from 'gmfapi/store/config';
Expand Down
2 changes: 2 additions & 0 deletions src/e2e/desktop.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@

/* eslint-disable @typescript-eslint/no-unsafe-call */
/* eslint-disable @typescript-eslint/no-unsafe-member-access */
/* eslint-disable @typescript-eslint/no-unsafe-assignment */
/* eslint-disable @typescript-eslint/no-unsafe-argument */

import olMap from 'ol/Map';
import path from 'path';
Expand Down
1 change: 0 additions & 1 deletion src/e2e/mobile.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
/* eslint-disable @typescript-eslint/no-unsafe-member-access */
/* eslint-disable @typescript-eslint/no-unsafe-assignment */
/* eslint-disable @typescript-eslint/restrict-template-expressions */
/* eslint-disable @typescript-eslint/unbound-method */

import olMap from 'ol/Map';
import {LineString, Polygon} from 'ol/geom';
Expand Down
1 change: 0 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
"sourceMap": true,
"experimentalDecorators": true,
"baseUrl": "./",
"types": ["cypress", "node", "cypress-real-events"],
"paths": {
"ngeo/*": ["src/*"],
"gmf/*": ["src/*"],
Expand Down
Loading