Merge pull request #511 from spotify/rugvip/cba

fixes for create-app
This commit is contained in:
Patrik Oldsberg
2020-04-07 19:02:54 +02:00
committed by GitHub
5 changed files with 24 additions and 22 deletions
+11
View File
@@ -0,0 +1,11 @@
{
"extends": "@spotify/web-scripts/config/tsconfig.json",
"exclude": ["**/*.test.*"],
"compilerOptions": {
"allowJs": true,
"noEmit": false,
"declarationMap": true,
"incremental": true,
"module": "es6"
}
}
@@ -1,8 +1,8 @@
{
"name": "plugin-welcome",
"version": "0.0.0",
"main": "dist/cjs/index.js",
"types": "dist/cjs/index.d.ts",
"main": "dist/index.cjs.js",
"types": "dist/index.d.ts",
"private": true,
"scripts": {
"build": "backstage-cli plugin:build",
@@ -11,11 +11,17 @@
},
"devDependencies": {
"@backstage/cli": "^{{version}}",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@types/testing-library__jest-dom": "5.0.2"
},
"dependencies": {
"@material-ui/lab": "4.0.0-alpha.45",
"@backstage/core": "^{{version}}",
"@backstage/theme": "^{{version}}"
"@backstage/theme": "^{{version}}",
"@material-ui/core": "^4.9.1",
"@material-ui/icons": "^4.9.1",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-router-dom": "5.1.2"
}
}
@@ -36,7 +36,7 @@ const WelcomePage: FC<{}> = () => {
</ContentHeader>
<Grid container>
<Grid item xs={12} md={6}>
<InfoCard maxWidth>
<InfoCard>
<Typography variant="body1" gutterBottom>
You now have a running instance of Backstage!
<span role="img" aria-label="confetti">
@@ -1,10 +1,3 @@
{
"extends": "@spotify/web-scripts/config/tsconfig.json",
"exclude": ["**/*.test.*"],
"compilerOptions": {
"allowJs": true,
"noEmit": false,
"declarationMap": true,
"incremental": true
}
"extends": "@backstage/cli/config/tsconfig.json"
}
+1 -9
View File
@@ -1,11 +1,3 @@
{
"extends": "@spotify/web-scripts/config/tsconfig.json",
"exclude": ["**/*.test.*"],
"compilerOptions": {
"allowJs": true,
"noEmit": false,
"declarationMap": true,
"incremental": true,
"module": "es6"
}
"extends": "@backstage/cli/config/tsconfig.json"
}