Skip to content

Commit 1fbdae0

Browse files
committed
Manual changes for release
Signed-off-by: Andre Wanlin <[email protected]>
1 parent 5dd10ab commit 1fbdae0

17 files changed

+11
-19
lines changed

package.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@
66
"node": "20 || 22"
77
},
88
"scripts": {
9-
"dev": "yarn workspaces foreach -A --include backend --include app --parallel --jobs unlimited -v -i run start",
10-
"start": "yarn workspace app start",
11-
"start-backend": "yarn workspace backend start",
9+
"start": "backstage-cli repo start",
1210
"build:backend": "yarn workspace backend build",
1311
"build:all": "backstage-cli repo build --all",
1412
"build-image": "yarn workspace backend build-image",

packages/app/src/App.test.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import React from 'react';
21
import { render, waitFor } from '@testing-library/react';
32
import App from './App';
43
import { v4 } from 'uuid';

packages/app/src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import { UnifiedThemeProvider, themes } from '@backstage/theme';
3131

3232
import { ApiExplorerPage } from '@backstage/plugin-api-docs';
3333
import { GraphiQLPage } from '@backstage-community/plugin-graphiql';
34-
import React from 'react';
34+
3535
import { Root } from './components/Root';
3636
import { SearchPage } from '@backstage/plugin-search';
3737
import { TechRadarPage } from '@backstage-community/plugin-tech-radar';

packages/app/src/components/Root/ApertureLogoFull.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import React from 'react';
21
import { makeStyles } from '@material-ui/core';
32

43
const useStyles = makeStyles({

packages/app/src/components/Root/ApertureLogoIcon.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import React from 'react';
21
import { makeStyles } from '@material-ui/core';
32

43
const useStyles = makeStyles({

packages/app/src/components/Root/LogoFull.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
* limitations under the License.
1515
*/
1616

17-
import React from 'react';
1817
import { makeStyles } from '@material-ui/core';
1918

2019
const useStyles = makeStyles({

packages/app/src/components/Root/LogoIcon.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
* limitations under the License.
1515
*/
1616

17-
import React from 'react';
1817
import { makeStyles } from '@material-ui/core';
1918

2019
const useStyles = makeStyles({

packages/app/src/components/Root/Root.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import React, { PropsWithChildren } from 'react';
1+
import { PropsWithChildren } from 'react';
22
import { Link, Theme, makeStyles } from '@material-ui/core';
33
import HomeIcon from '@material-ui/icons/Home';
44
import ExtensionIcon from '@material-ui/icons/Extension';

packages/app/src/components/catalog/EntityPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
import React, { useMemo, useState } from 'react';
16+
import { useMemo, useState } from 'react';
1717
import { Button, Grid } from '@material-ui/core';
1818
import BadgeIcon from '@material-ui/icons/CallToAction';
1919
import {

packages/app/src/components/home/CustomizableHomePage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import {
1111
} from '@backstage/plugin-home';
1212
import { HomePageSearchBar } from '@backstage/plugin-search';
1313
import { Grid } from '@material-ui/core';
14-
import React from 'react';
14+
1515
import { tools, useLogoStyles } from './shared';
1616

1717
const defaultConfig = [

0 commit comments

Comments
 (0)