Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,9 @@ jobs:
- name: Install dependencies
run: yarn install

- name: Repo fix
run: yarn fix --check

- name: Prettier
run: yarn prettier:check

Expand Down
6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@
"engines": {
"node": "20 || 22 || 24"
},
"repository": {
"type": "git",
"url": "https://github.com/AxisCommunications/backstage-plugins"
},
"scripts": {
"dev": "NODE_OPTIONS=--no-node-snapshot backstage-cli repo start",
"dev-next": "npx backstage-cli repo start backend app-next",
Expand All @@ -22,7 +26,7 @@
"test": "backstage-cli repo test",
"test:all": "backstage-cli repo test --coverage",
"test:e2e": "playwright test",
"fix": "backstage-cli repo fix",
"fix": "backstage-cli repo fix --publish",
"lint": "backstage-cli repo lint --since origin/main",
"lint:all": "backstage-cli repo lint",
"pack": "yarn workspaces foreach -A -v pack",
Expand Down
5 changes: 5 additions & 0 deletions packages/app-next/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
"version": "0.1.17",
"private": true,
"bundled": true,
"repository": {
"type": "git",
"url": "https://github.com/AxisCommunications/backstage-plugins",
"directory": "packages/app-next"
},
"backstage": {
"role": "frontend"
},
Expand Down
5 changes: 5 additions & 0 deletions packages/app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
"version": "0.12.14",
"private": true,
"bundled": true,
"repository": {
"type": "git",
"url": "https://github.com/AxisCommunications/backstage-plugins",
"directory": "packages/app"
},
"backstage": {
"role": "frontend"
},
Expand Down
5 changes: 5 additions & 0 deletions packages/backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@
"main": "dist/index.cjs.js",
"types": "src/index.ts",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/AxisCommunications/backstage-plugins",
"directory": "packages/backend"
},
"backstage": {
"role": "backend"
},
Expand Down
5 changes: 5 additions & 0 deletions plugins/analytics-module-umami/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@
"types": "dist/index.d.ts",
"directory": "_release/package"
},
"repository": {
"type": "git",
"url": "https://github.com/AxisCommunications/backstage-plugins",
"directory": "plugins/analytics-module-umami"
},
"backstage": {
"role": "frontend-plugin",
"pluginId": "analytics-module-umami",
Expand Down
5 changes: 5 additions & 0 deletions plugins/jira-dashboard-backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@
"types": "dist/index.d.ts",
"directory": "_release/package"
},
"repository": {
"type": "git",
"url": "https://github.com/AxisCommunications/backstage-plugins",
"directory": "plugins/jira-dashboard-backend"
},
"backstage": {
"role": "backend-plugin",
"pluginId": "jira-dashboard",
Expand Down
5 changes: 5 additions & 0 deletions plugins/jira-dashboard-common/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@
"types": "dist/index.d.ts",
"directory": "_release/package"
},
"repository": {
"type": "git",
"url": "https://github.com/AxisCommunications/backstage-plugins",
"directory": "plugins/jira-dashboard-common"
},
"backstage": {
"role": "common-library",
"pluginId": "jira-dashboard",
Expand Down
5 changes: 5 additions & 0 deletions plugins/jira-dashboard/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@
]
}
},
"repository": {
"type": "git",
"url": "https://github.com/AxisCommunications/backstage-plugins",
"directory": "plugins/jira-dashboard"
},
"backstage": {
"role": "frontend-plugin",
"pluginId": "jira-dashboard",
Expand Down
5 changes: 5 additions & 0 deletions plugins/readme-backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@
"types": "dist/index.d.ts",
"directory": "_release/package"
},
"repository": {
"type": "git",
"url": "https://github.com/AxisCommunications/backstage-plugins",
"directory": "plugins/readme-backend"
},
"backstage": {
"role": "backend-plugin",
"pluginId": "readme",
Expand Down
7 changes: 5 additions & 2 deletions plugins/readme/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,13 @@
"license": "Apache-2.0",
"publishConfig": {
"access": "public",
"main": "dist/index.esm.js",
"types": "dist/index.d.ts",
"directory": "_release/package"
},
"repository": {
"type": "git",
"url": "https://github.com/AxisCommunications/backstage-plugins",
"directory": "plugins/readme"
},
"backstage": {
"role": "frontend-plugin",
"pluginId": "readme",
Expand Down
5 changes: 5 additions & 0 deletions plugins/statuspage-backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@
"types": "dist/index.d.ts",
"directory": "_release/package"
},
"repository": {
"type": "git",
"url": "https://github.com/AxisCommunications/backstage-plugins",
"directory": "plugins/statuspage-backend"
},
"backstage": {
"role": "backend-plugin",
"pluginId": "statuspage",
Expand Down
5 changes: 5 additions & 0 deletions plugins/statuspage-common/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@
"types": "dist/index.d.ts",
"directory": "_release/package"
},
"repository": {
"type": "git",
"url": "https://github.com/AxisCommunications/backstage-plugins",
"directory": "plugins/statuspage-common"
},
"backstage": {
"role": "common-library",
"pluginId": "statuspage",
Expand Down
7 changes: 5 additions & 2 deletions plugins/statuspage/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,13 @@
"license": "Apache-2.0",
"publishConfig": {
"access": "public",
"main": "dist/index.esm.js",
"types": "dist/index.d.ts",
"directory": "_release/package"
},
"repository": {
"type": "git",
"url": "https://github.com/AxisCommunications/backstage-plugins",
"directory": "plugins/statuspage"
},
"backstage": {
"role": "frontend-plugin",
"pluginId": "statuspage",
Expand Down
7 changes: 5 additions & 2 deletions plugins/vacation-calendar/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,13 @@
"license": "Apache-2.0",
"publishConfig": {
"access": "public",
"main": "dist/index.esm.js",
"types": "dist/index.d.ts",
"directory": "_release/package"
},
"repository": {
"type": "git",
"url": "https://github.com/AxisCommunications/backstage-plugins",
"directory": "plugins/vacation-calendar"
},
"backstage": {
"role": "frontend-plugin",
"pluginId": "vacation-calendar",
Expand Down
Loading