Package Exports
- @sirmews/is-awesome
- @sirmews/is-awesome/dist/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@sirmews/is-awesome) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
is-awesome
A simple package to determine level of awesome based on whether a supplied string of followers includes Jade.
Installation
npm install is-awesome
# or
bun install is-awesome
Usage
import { levelOfAwesomeness } from "is-awesome";
// Check if something is awesome
console.log(levelOfAwesomeness(["Jade"])); // Output: 'Awesome'
console.log(levelOfAwesomeness(["John", "Clyde"])); // Output: 'Lame'
Development
This package uses Bun for development. To get started:
- Clone the repository
- Run
bun install
- Run
bun test
to run tests - Run
bun run build
to build the package
Publishing
Use the Makefile commands for easy deployment:
make test # Run tests
make build # Build the package
make publish # Publish to npm