Skip to content

Commit ed4c2a6

Browse files
committed
Merge branch 'ssh-agent-on-pr987' of https://github.com/fabiovincenzi/git-proxy into ssh-agent-on-pr987
2 parents 3fe3545 + 239f7a2 commit ed4c2a6

File tree

16 files changed

+28
-378
lines changed

16 files changed

+28
-378
lines changed

package-lock.json

Lines changed: 4 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@finos/git-proxy",
3-
"version": "2.0.0-rc.3",
3+
"version": "2.0.0-rc.4",
44
"description": "Deploy custom push protections and policies on top of Git.",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
@@ -113,7 +113,6 @@
113113
"passport-activedirectory": "^1.4.0",
114114
"passport-local": "^1.0.0",
115115
"perfect-scrollbar": "^1.5.6",
116-
"prop-types": "15.8.1",
117116
"react": "^16.14.0",
118117
"react-dom": "^16.14.0",
119118
"react-html-parser": "^2.0.2",

packages/git-proxy-cli/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "@finos/git-proxy-cli",
3-
"version": "2.0.0-rc.3",
3+
"version": "2.0.0-rc.4",
44
"description": "Command line interface tool for FINOS GitProxy.",
55
"bin": {
66
"git-proxy-cli": "./dist/index.js"
77
},
88
"dependencies": {
99
"axios": "^1.13.2",
1010
"yargs": "^17.7.2",
11-
"@finos/git-proxy": "2.0.0-rc.3"
11+
"@finos/git-proxy": "2.0.0-rc.4"
1212
},
1313
"scripts": {
1414
"build": "tsc",

src/ui/components/CustomInput/CustomInput.jsx

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

src/ui/components/Table/Table.jsx

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

src/ui/components/Tasks/Tasks.jsx

Lines changed: 0 additions & 89 deletions
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
import React from 'react';
2-
import PropTypes from 'prop-types';
32
import clsx from 'clsx';
43
import { makeStyles } from '@material-ui/core/styles';
54
import styles from '../../assets/jss/material-dashboard-react/components/typographyStyle';
65

76
const useStyles = makeStyles(styles);
87

9-
export default function Danger(props) {
10-
const classes = useStyles();
11-
const { children } = props;
12-
return <div className={clsx(classes.primaryText, classes.dangerText)}>{children}</div>;
8+
interface DangerProps {
9+
children?: React.ReactNode;
1310
}
1411

15-
Danger.propTypes = {
16-
children: PropTypes.node,
12+
const Danger: React.FC<DangerProps> = ({ children }) => {
13+
const classes = useStyles();
14+
return <div className={clsx(classes.primaryText, classes.dangerText)}>{children}</div>;
1715
};
16+
17+
export default Danger;

src/ui/components/Typography/Info.jsx

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

src/ui/components/Typography/Muted.jsx

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

src/ui/components/Typography/Primary.jsx

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

0 commit comments

Comments
 (0)