-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into playwright_action
- Loading branch information
Showing
30 changed files
with
4,166 additions
and
4,262 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
nodeLinker: node-modules | ||
|
||
yarnPath: .yarn/releases/yarn-4.4.0.cjs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,14 +11,14 @@ | |
"build:watch": "tsc --build --watch", | ||
"clean": "rimraf coverage lib storybook-static types .env *.tsbuildinfo", | ||
"clean:slate": "yarn run clean && rimraf node_modules", | ||
"clean:docker": "docker-compose down -v --remove-orphans", | ||
"clean:docker": "docker compose down -v --remove-orphans", | ||
"eslint": "eslint . --ext .ts,.tsx --fix", | ||
"eslint:check": "eslint . --ext .ts,.tsx", | ||
"prepare": "yarnpkg run build && husky install", | ||
"prepublishOnly": "yarnpkg run clean && yarnpkg run webpack:prod", | ||
"start:docker": "docker-compose --profile local-dev up --build", | ||
"start:docker": "docker compose --profile local-dev up --build", | ||
"start": "yarn run start:services && yarn run start:ui", | ||
"start:services": "docker-compose up -d", | ||
"start:services": "docker compose up -d", | ||
"start:ui": "REACT_APP_VERSION=$npm_package_version webpack server --history-api-fallback", | ||
"start:chromium": "webpack serve --open 'chromium'", | ||
"start:prod": "NODE_ENV=production webpack serve", | ||
|
@@ -70,6 +70,7 @@ | |
"date-fns-tz": "^1.3.7", | ||
"lodash": "^4.17.21", | ||
"match-sorter": "^6.3.1", | ||
"mui-file-dropzone": "^4.0.2", | ||
"react": "^18.0.0", | ||
"react-beautiful-dnd": "^13.1.0", | ||
"react-dom": "^18.0.0", | ||
|
@@ -141,5 +142,6 @@ | |
}, | ||
"engines": { | ||
"node": ">=18.0.0" | ||
} | ||
}, | ||
"packageManager": "[email protected]" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
import { CondaSpecificationPip } from "./CondaSpecificationPip"; | ||
import type { CondaSpecificationPip } from "./CondaSpecificationPip"; | ||
import type { Lockfile } from "./Lockfile"; | ||
|
||
export type CondaSpecification = { | ||
name: string; | ||
channels: string[]; | ||
dependencies: (string | CondaSpecificationPip)[]; | ||
variables: Record<string, string>; | ||
prefix?: string | null; | ||
lockfile?: Lockfile; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
// TODO: define lockfile type better | ||
export type Lockfile = Record<string, any>; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import React from "react"; | ||
import Typography from "@mui/material/Typography"; | ||
|
||
export const LockfileSupportInfo = () => ( | ||
<Typography sx={{ fontSize: "12px" }}> | ||
We currently only support the{" "} | ||
<a | ||
href="https://conda.github.io/conda-lock/" | ||
target="_blank" | ||
rel="noreferrer" | ||
> | ||
Conda lockfile | ||
</a>{" "} | ||
format. Other lockfile formats such as Poetry are not supported. | ||
</Typography> | ||
); | ||
|
||
export default LockfileSupportInfo; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.