rename npm namespace from @spotify-backstage to @backstage
This commit is contained in:
@@ -1,3 +1,3 @@
|
||||
# @spotify-backstage/app
|
||||
# @backstage/app
|
||||
|
||||
This package is an example of a Backstage application.
|
||||
|
||||
@@ -1,15 +1,15 @@
|
||||
{
|
||||
"name": "@spotify-backstage/app",
|
||||
"name": "@backstage/app",
|
||||
"version": "0.0.0",
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
"@material-ui/core": "^4.9.1",
|
||||
"@material-ui/icons": "^4.9.1",
|
||||
"@material-ui/lab": "4.0.0-alpha.45",
|
||||
"@spotify-backstage/cli": "^0.1.0",
|
||||
"@spotify-backstage/core": "^0.1.0",
|
||||
"@spotify-backstage/plugin-home-page": "^0.1.0",
|
||||
"@spotify-backstage/plugin-welcome": "^0.1.0",
|
||||
"@backstage/cli": "^0.1.0",
|
||||
"@backstage/core": "^0.1.0",
|
||||
"@backstage/plugin-home-page": "^0.1.0",
|
||||
"@backstage/plugin-welcome": "^0.1.0",
|
||||
"@testing-library/jest-dom": "^4.2.4",
|
||||
"@testing-library/react": "^9.3.2",
|
||||
"@testing-library/user-event": "^7.1.2",
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
*/
|
||||
|
||||
import { CssBaseline, makeStyles, ThemeProvider } from '@material-ui/core';
|
||||
import { BackstageTheme, createApp } from '@spotify-backstage/core';
|
||||
import { BackstageTheme, createApp } from '@backstage/core';
|
||||
import React, { FC } from 'react';
|
||||
import { BrowserRouter as Router } from 'react-router-dom';
|
||||
import Root from './components/Root';
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
import { ApiHolder, ApiRegistry, errorApiRef } from '@spotify-backstage/core';
|
||||
import { ApiHolder, ApiRegistry, errorApiRef } from '@backstage/core';
|
||||
import { ErrorDisplayForwarder } from './components/ErrorDisplay/ErrorDisplay';
|
||||
|
||||
const builder = ApiRegistry.builder();
|
||||
|
||||
@@ -18,7 +18,7 @@ import React, { FC, useEffect, useState } from 'react';
|
||||
import PropTypes from 'prop-types';
|
||||
import { Snackbar } from '@material-ui/core';
|
||||
import { Alert } from '@material-ui/lab';
|
||||
import { ErrorApi, ErrorContext } from '@spotify-backstage/core';
|
||||
import { ErrorApi, ErrorContext } from '@backstage/core';
|
||||
|
||||
type SubscriberFunc = (error: Error) => void;
|
||||
type Unsubscribe = () => void;
|
||||
|
||||
@@ -28,7 +28,7 @@ import {
|
||||
SidebarSpacer,
|
||||
SidebarDivider,
|
||||
SidebarSpace,
|
||||
} from '@spotify-backstage/core';
|
||||
} from '@backstage/core';
|
||||
|
||||
const useSidebarLogoStyles = makeStyles({
|
||||
root: {
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
/* eslint-disable notice/notice */
|
||||
export { default as HomePagePlugin } from '@spotify-backstage/plugin-home-page';
|
||||
export { default as WelcomePlugin } from '@spotify-backstage/plugin-welcome';
|
||||
export { default as HomePagePlugin } from '@backstage/plugin-home-page';
|
||||
export { default as WelcomePlugin } from '@backstage/plugin-welcome';
|
||||
|
||||
Reference in New Issue
Block a user