Skip to content

Commit

Permalink
Release 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianCassayre committed Jan 29, 2021
1 parent bcf357c commit 4e1a7b7
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 20 deletions.
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@
"react-router-bootstrap": "^0.25.0",
"react-router-dom": "^5.2.0",
"react-scripts": "^4.0.1",
"read-gedcom": "^0.1.0",
"read-gedcom": "^0.1.1",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"test": "react-scripts test --passWithNoTests",
"eject": "react-scripts eject",
"setup": "bash setup.sh"
},
Expand Down
4 changes: 2 additions & 2 deletions setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ then
git pull
cd ..
else
git clone git@github.com:arbre-app/public-gedcoms.git public-gedcoms
git clone https://github.com/arbre-app/public-gedcoms.git public-gedcoms
fi

rm public/gedcoms/*.ged
rm -f public/gedcoms/*.ged

cp public-gedcoms/files/*.ged public/gedcoms/
8 changes: 0 additions & 8 deletions src/pages/mixed/MixedLayout/MixedLayout.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,5 @@
import PropTypes from 'prop-types';
import React, { Component } from 'react';
import { Nav } from 'react-bootstrap';
import { FormattedMessage } from 'react-intl';
import { AppRoutes } from '../../../routes';
import { Content } from '../../Content';
import { Footer } from '../../Footer';
import { HelmetBase } from '../../HelmetBase';
import { MenuBase } from '../../MenuBase';
import { LinkContainer } from 'react-router-bootstrap';
import { PrivateLayout } from '../../private';
import { PublicLayout } from '../../public';

Expand Down
2 changes: 1 addition & 1 deletion src/pages/mixed/PageAbout/PageAbout.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { Component } from 'react';
import { Card } from 'react-bootstrap';
import { Code, CodeSlash, Envelope, InfoCircle, People, QuestionCircle } from 'react-bootstrap-icons';
import { CodeSlash, Envelope, InfoCircle, People } from 'react-bootstrap-icons';
import { FormattedMessage } from 'react-intl';
import { HelmetBase } from '../../HelmetBase';
import { MixedLayout } from '../MixedLayout';
Expand Down
4 changes: 0 additions & 4 deletions src/pages/public/PublicLayout.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,9 @@
import PropTypes from 'prop-types';
import React, { Component } from 'react';
import { Nav } from 'react-bootstrap';
import { FormattedMessage } from 'react-intl';
import { AppRoutes } from '../../routes';
import { Content } from '../Content';
import { Footer } from '../Footer';
import { HelmetBase } from '../HelmetBase';
import { MenuBase } from '../MenuBase';
import { LinkContainer } from 'react-router-bootstrap';

export class PublicLayout extends Component {
render() {
Expand Down

0 comments on commit 4e1a7b7

Please sign in to comment.