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
5 changes: 5 additions & 0 deletions .changeset/rename-package.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@bootnodedev/canton-barebones": patch
---

Rename the npm package from `@bootnodedev/cbn` to `@bootnodedev/canton-barebones` to match the repository name. The CLI binary is still `canton-barebones`; `@bootnodedev/cbn` is deprecated on npm and will receive no further releases.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Publishes @bootnodedev/cbn to npm via Changesets.
# Publishes @bootnodedev/canton-barebones to npm via Changesets.
#
# Flow: every push to main runs this. The changesets action either
# (a) opens/updates a "Version Packages" PR when unreleased changesets exist, or
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# @bootnodedev/cbn
# @bootnodedev/canton-barebones

## 0.2.1

Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@bootnodedev/cbn",
"name": "@bootnodedev/canton-barebones",
"version": "0.2.1",
"type": "module",
"description": "Barebones one-click Canton developer stack.",
Expand Down
2 changes: 1 addition & 1 deletion scripts/runtime-plan.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ function baseConfig(generatedDir) {

// A throwaway directory standing in for the project's .generated/, so the tests
// can inspect the env file the writer produces without touching the repo.
const generatedDir = fs.mkdtempSync(path.join(os.tmpdir(), 'cbn-runtime-plan-'));
const generatedDir = fs.mkdtempSync(path.join(os.tmpdir(), 'canton-barebones-runtime-plan-'));
after(() => fs.rmSync(generatedDir, { recursive: true, force: true }));

// Parses a generated env file back into a key→value map so assertions can target
Expand Down
Loading