fix: yarn.lock to keep tsc command from failing

Signed-off-by: djamaile <rdjamaile@gmail.com>
This commit is contained in:
djamaile
2022-03-12 19:25:49 +01:00
committed by Fredrik Adelöw
parent d3af30b47d
commit e3cca397e4
4 changed files with 12 additions and 21 deletions
+1 -3
View File
@@ -65,8 +65,6 @@ export const apis: AnyApiFactory[] = [
}),
]),
}),
createApiFactory(costInsightsApiRef, new ExampleCostInsightsClient()),
createApiFactory({
api: cicdStatisticsApiRef,
deps: { gitlabAuthApi: gitlabAuthApiRef },
@@ -74,5 +72,5 @@ export const apis: AnyApiFactory[] = [
return new CicdStatisticsApiGitlab(gitlabAuthApi);
},
}),
// createApiFactory(cicdStatisticsApiRef, new CicdStatisticsApiGitlab()),
createApiFactory(costInsightsApiRef, new ExampleCostInsightsClient()),
];
@@ -1,3 +1 @@
module.exports = {
extends: [require.resolve('@backstage/cli/config/eslint')],
};
module.exports = require('@backstage/cli/config/eslint-factory')(__dirname);
@@ -8,16 +8,12 @@
"private": false,
"publishConfig": {
"access": "public",
"main": "dist/index.esm.js",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts"
},
"backstage": {
"role": "frontend-plugin"
},
"repository": {
"type": "git",
"url": "https://github.com/backstage/backstage",
"directory": "plugins/cicd-statistics-module-gitlab"
"role": "common-library"
},
"keywords": [
"backstage",
@@ -27,20 +23,20 @@
"scripts": {
"build": "backstage-cli package build",
"lint": "backstage-cli package lint",
"test": "backstage-cli package test"
"test": "backstage-cli package test",
"clean": "backstage-cli package clean",
"prepack": "backstage-cli package prepack",
"postpack": "backstage-cli package postpack"
},
"dependencies": {
"@backstage/catalog-model": "^0.9.10",
"@backstage/core-plugin-api": "^0.8.0",
"@backstage/plugin-cicd-statistics": "^0.1.0",
"@gitbeaker/browser": "34.2.0",
"@gitbeaker/core": "^35.4.0",
"lodash": "^4.17.21",
"luxon": "^2.0.2",
"p-limit": "^4.0.0"
},
"peerDependencies": {
"react": "^16.13.1 || ^17.0.0"
"devDependencies": {
"@backstage/cli": "^0.15.2"
},
"files": [
"dist"
@@ -13,5 +13,4 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import '@testing-library/jest-dom';
import 'cross-fetch/polyfill';
export {};