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
9 changes: 9 additions & 0 deletions .github/actions/check-no-prerelease-deps/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
name: 'Check no prerelease deps'
description: 'Fail if any package.json declares a prerelease npm dep (alpha/beta/rc/pre).'

runs:
using: 'composite'
steps:
- name: Run prerelease-deps check
shell: bash
run: bash scripts/check-no-prerelease-deps.sh
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ jobs:
- name: Check formatting and linting
uses: ./.github/actions/check-formatting

- name: Check no prerelease deps
uses: ./.github/actions/check-no-prerelease-deps

- name: Run tests with coverage
id: run-tests
uses: ./.github/actions/run-tests
Expand Down
12 changes: 0 additions & 12 deletions packages/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,18 +30,6 @@ VS Code extension — thin wrapper around the core library.

**[📖 Extension README](./rangelink-vscode-extension/README.md)** | **[🔧 Development Guide](./rangelink-vscode-extension/DEVELOPMENT.md)**

### [`barebone-logger/`](./barebone-logger)

Minimal logging interface — zero dependencies, framework-agnostic. Enables dependency injection for logging in any TypeScript project.

**[📖 README](./barebone-logger/README.md)**

### [`barebone-logger-testing/`](./barebone-logger-testing)

Testing companion for barebone-logger — provides mock logger factory for Jest test suites.

**[📖 README](./barebone-logger-testing/README.md)**

---

## 📚 Understanding the Architecture
Expand Down
177 changes: 0 additions & 177 deletions packages/barebone-logger-testing/README.md

This file was deleted.

39 changes: 0 additions & 39 deletions packages/barebone-logger-testing/package.json

This file was deleted.

5 changes: 0 additions & 5 deletions packages/barebone-logger-testing/src/index.ts

This file was deleted.

14 changes: 0 additions & 14 deletions packages/barebone-logger-testing/src/mocks/createMockLogger.ts

This file was deleted.

12 changes: 0 additions & 12 deletions packages/barebone-logger-testing/tsconfig.json

This file was deleted.

Loading