Skip to content

Commit 4e1a7b7

Browse files
Release 0.1.0
1 parent bcf357c commit 4e1a7b7

File tree

6 files changed

+8
-20
lines changed

6 files changed

+8
-20
lines changed

package-lock.json

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

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,14 @@
3535
"react-router-bootstrap": "^0.25.0",
3636
"react-router-dom": "^5.2.0",
3737
"react-scripts": "^4.0.1",
38-
"read-gedcom": "^0.1.0",
38+
"read-gedcom": "^0.1.1",
3939
"redux": "^4.0.5",
4040
"redux-thunk": "^2.3.0"
4141
},
4242
"scripts": {
4343
"start": "react-scripts start",
4444
"build": "react-scripts build",
45-
"test": "react-scripts test",
45+
"test": "react-scripts test --passWithNoTests",
4646
"eject": "react-scripts eject",
4747
"setup": "bash setup.sh"
4848
},

setup.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ then
1010
git pull
1111
cd ..
1212
else
13-
git clone git@github.com:arbre-app/public-gedcoms.git public-gedcoms
13+
git clone https://github.com/arbre-app/public-gedcoms.git public-gedcoms
1414
fi
1515

16-
rm public/gedcoms/*.ged
16+
rm -f public/gedcoms/*.ged
1717

1818
cp public-gedcoms/files/*.ged public/gedcoms/

src/pages/mixed/MixedLayout/MixedLayout.js

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,5 @@
11
import PropTypes from 'prop-types';
22
import React, { Component } from 'react';
3-
import { Nav } from 'react-bootstrap';
4-
import { FormattedMessage } from 'react-intl';
5-
import { AppRoutes } from '../../../routes';
6-
import { Content } from '../../Content';
7-
import { Footer } from '../../Footer';
8-
import { HelmetBase } from '../../HelmetBase';
9-
import { MenuBase } from '../../MenuBase';
10-
import { LinkContainer } from 'react-router-bootstrap';
113
import { PrivateLayout } from '../../private';
124
import { PublicLayout } from '../../public';
135

src/pages/mixed/PageAbout/PageAbout.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React, { Component } from 'react';
22
import { Card } from 'react-bootstrap';
3-
import { Code, CodeSlash, Envelope, InfoCircle, People, QuestionCircle } from 'react-bootstrap-icons';
3+
import { CodeSlash, Envelope, InfoCircle, People } from 'react-bootstrap-icons';
44
import { FormattedMessage } from 'react-intl';
55
import { HelmetBase } from '../../HelmetBase';
66
import { MixedLayout } from '../MixedLayout';

src/pages/public/PublicLayout.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,9 @@
11
import PropTypes from 'prop-types';
22
import React, { Component } from 'react';
3-
import { Nav } from 'react-bootstrap';
4-
import { FormattedMessage } from 'react-intl';
5-
import { AppRoutes } from '../../routes';
63
import { Content } from '../Content';
74
import { Footer } from '../Footer';
85
import { HelmetBase } from '../HelmetBase';
96
import { MenuBase } from '../MenuBase';
10-
import { LinkContainer } from 'react-router-bootstrap';
117

128
export class PublicLayout extends Component {
139
render() {

0 commit comments

Comments
 (0)