Skip to content

Commit

Permalink
fix: remove custom node-workspace plugin
Browse files Browse the repository at this point in the history
release-please now has all the fixes we need and we can
use the upstream plugin
  • Loading branch information
lukekarrys committed May 2, 2024
1 parent 3749b91 commit 5c8be93
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 106 deletions.
103 changes: 0 additions & 103 deletions lib/release/node-workspace.js

This file was deleted.

3 changes: 0 additions & 3 deletions lib/release/release-please.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ const assert = require('assert')
const core = require('@actions/core')
const omit = require('just-omit')
const ChangelogNotes = require('./changelog.js')
const NodeWorkspace = require('./node-workspace.js')
const NodeWorkspaceFormat = require('./node-workspace-format.js')
const { getPublishTag, noop } = require('./util.js')

Expand Down Expand Up @@ -69,8 +68,6 @@ class ReleasePlease {
new ChangelogNotes(github, o))
RP.registerVersioningStrategy('default', (o) =>
o.prerelease ? new PrereleaseVersioningStrategy(o) : new DefaultVersioningStrategy(o))
RP.registerPlugin('node-workspace', ({ github, targetBranch, repositoryConfig, ...o }) =>
new NodeWorkspace(github, targetBranch, repositoryConfig, o))
RP.registerPlugin('node-workspace-format', ({ github, targetBranch, repositoryConfig, ...o }) =>
new NodeWorkspaceFormat(github, targetBranch, repositoryConfig, o))

Expand Down

0 comments on commit 5c8be93

Please sign in to comment.