Address comments

This commit is contained in:
Fredrik Adelöw
2020-04-27 09:49:23 +02:00
parent c89f7d000e
commit 6fdef8ac9b
6 changed files with 34 additions and 12 deletions
+11 -4
View File
@@ -1,6 +1,13 @@
# Title
Welcome to the inventory-backend plugin!
# Inventory Backend
## Sub-section 1
WORK IN PROGRESS
## Sub-section 2
This is the backend part of the default inventory plugin.
It responds to requests from the frontend part, and fulfills them by delegating
to your existing inventory related services.
## Links
- (Frontend part of the plugin)[https://github.com/spotify/backstage/tree/master/plugins/inventory]
- (The Backstage homepage)[https://backstage.io]
+4 -1
View File
@@ -15,5 +15,8 @@
},
"dependencies": {
"express": "^4.17.1"
}
},
"files": [
"dist"
]
}
+2 -1
View File
@@ -9,6 +9,7 @@
"strict": true,
"target": "es5",
"module": "commonjs",
"esModuleInterop": true
"esModuleInterop": true,
"types": ["node", "jest"]
}
}
+1 -1
View File
@@ -1,3 +1,3 @@
module.exports = {
extends: [require.resolve('@backstage/cli/config/eslint.js')],
extends: [require.resolve('@backstage/cli/config/eslint')],
};
+11 -4
View File
@@ -1,6 +1,13 @@
# Title
Welcome to the inventory plugin!
# Inventory Frontend
## Sub-section 1
WORK IN PROGRESS
## Sub-section 2
This is the frontend part of the default inventory plugin.
It will implement the core API for handling your inventory of software, and
supply the base views to show and manage them.
## Links
- (Backend part of the plugin)[https://github.com/spotify/backstage/tree/master/plugins/inventory-backend]
- (The Backstage homepage)[https://backstage.io]
+5 -1
View File
@@ -7,6 +7,7 @@
"private": true,
"scripts": {
"build": "backstage-cli plugin:build",
"start": "backstage-cli plugin:serve",
"lint": "backstage-cli lint",
"test": "backstage-cli test",
"clean": "backstage-cli clean"
@@ -30,5 +31,8 @@
"react": "16.13.1",
"react-dom": "16.13.1",
"react-use": "^13.0.0"
}
},
"files": [
"dist"
]
}