Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(npm): make plugin public to get published on npm #1716

Merged
merged 2 commits into from
Oct 21, 2024
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
5 changes: 5 additions & 0 deletions workspaces/npm/.changeset/proud-brooms-clean.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@backstage-community/plugin-npm': major
---

Initial version that shows meta info and latest versions from a npm registry
15 changes: 0 additions & 15 deletions workspaces/npm/packages/app/CHANGELOG.md

This file was deleted.

2 changes: 1 addition & 1 deletion workspaces/npm/packages/app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "app",
"version": "0.0.2",
"version": "0.0.0",
"private": true,
"bundled": true,
"repository": {
Expand Down
13 changes: 0 additions & 13 deletions workspaces/npm/plugins/npm/CHANGELOG.md

This file was deleted.

3 changes: 1 addition & 2 deletions workspaces/npm/plugins/npm/package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
{
"name": "@backstage-community/plugin-npm",
"description": "A Backstage plugin that shows meta info and latest versions from a npm registry",
"version": "1.0.1",
"version": "0.1.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
"private": true,
"publishConfig": {
"access": "public",
"main": "dist/index.esm.js",
Expand Down
Loading