Running:
# Bun
bunx @templ8/unwrap --help
# Node
npx @templ8/unwrap --help
-
init
- Initialize a new project. -
help
- Display help information. -
license
- Generate a license file.
The following templates are available out of the box:
Generates one of the following licenses:
- Apache 2.0
- MIT
Example:
# Generate a license file
unwrap license
# Test the command and see the output
unwrap license --dry-run
Generates one of the following Angular elements:
- [ ] Component
- [ ] Directive
- [ ] Module
- [ ] Pipe
- [x] Service
Example:
unwrap ng
# Test the command and see the output
unwrap ng --dry-run
Running with the Service
option produces the following output for the AppConfig
name:
app-config.service.ts
@Injectable({
providedIn: 'root'
})
export class AppConfigService {
}
app-config.service.spec.ts
import { TestBed } from '@angular/core/testing';
import { AppConfigService } from './app-config.service';
describe('AppConfigService', () => {
let service: AppConfigService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(AppConfigService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});
To install dependencies:
bun install
To run:
bun run index.ts
bun link
Now you can run unwrap
from anywhere.