Skip to content

Commit

Permalink
fix: more fixes following yarn upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
iwalmsley committed Jun 20, 2024
1 parent 18cf2d4 commit 3af6e34
Show file tree
Hide file tree
Showing 4 changed files with 443 additions and 304 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import httpMocks from 'node-mocks-http';
import { ANALYSIS, PUBLISH } from 'common/src/stackTypes';
import resourcesController from './resourcesController';
import dataStorageRepository from '../dataaccess/dataStorageRepository';
import stacksRepository from '../dataaccess/stacksRepository';
Expand Down Expand Up @@ -43,8 +42,8 @@ const storage = [
{ name: 'no key' },
];
const stacks = [
{ category: ANALYSIS, projectKey: 'project-99', name: 'notebook-99' },
{ category: PUBLISH, projectKey: 'project-99', name: 'site-99' },
{ category: 'ANALYSIS', projectKey: 'project-99', name: 'notebook-99' },
{ category: 'PUBLISH', projectKey: 'project-99', name: 'site-99' },
{ name: 'no key' },
];
const clusters = [
Expand Down
5 changes: 3 additions & 2 deletions code/workspaces/web-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
"axios-mock-adapter": "1.17.0",
"enzyme": "3.10.0",
"enzyme-to-json": "3.3.5",
"eslint": "^7.11.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
Expand All @@ -68,8 +69,8 @@
"test-ci": "CI=true react-scripts test --watchAll=false --runInBand",
"test-coverage": "react-scripts test --coverage --watchAll=false",
"eject": "react-scripts eject",
"lint": "../../node_modules/.bin/eslint ./src",
"lint-fix": "../../node_modules/.bin/eslint ./src --fix"
"lint": "eslint ./src",
"lint-fix": "eslint ./src --fix"
},
"browserslist": {
"production": [
Expand Down
1 change: 1 addition & 0 deletions code/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -23904,6 +23904,7 @@ __metadata:
downshift: "npm:^2.0.10"
enzyme: "npm:3.10.0"
enzyme-to-json: "npm:3.3.5"
eslint: "npm:^7.11.0"
eslint-config-airbnb: "npm:^17.1.1"
eslint-plugin-import: "npm:^2.18.0"
eslint-plugin-jsx-a11y: "npm:^6.2.3"
Expand Down
Loading

0 comments on commit 3af6e34

Please sign in to comment.