Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/troyalford/basis
https://github.com/troyalford/basis
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/troyalford/basis
- Owner: TroyAlford
- License: mit
- Created: 2024-07-01T01:48:46.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-11-03T09:37:36.000Z (2 months ago)
- Last Synced: 2024-11-03T09:24:59.446Z (2 months ago)
- Language: TypeScript
- Size: 3.88 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Project Overview
This monorepo provides a suite of development tools and utilities designed specifically for the Bun ecosystem.
## Workspaces
### [@basis/workspaces](./libraries/workspaces)
CLI tools and utilities for managing monorepo workspaces. Features include:
- Workspace discovery and management
- Dependency tracking
- Build system with license handling
- Change detection### [@basis/eslint-plugin](./libraries/eslint-plugin)
Custom ESLint rules for maintaining code quality:
- Type import organization
- Object formatting rules
- Additional TypeScript-specific rules### [@basis/bun-plugins](./libraries/bun-plugins)
Build plugins for the Bun runtime:
- SASS/SCSS compilation
- Global variable injection
- Asset handling### [@basis/utilities](./libraries/utilities)
Common utility functions:
- Formatting helpers
- Type utilities
- Development tools## Development
This project uses Bun for package management and building. To get started:
```bash
# Install dependencies
bun install# Build all packages
bun ws build-all# Run tests
bun test
```