@templ8/unwrap

0.0.3 • Public • Published

[unwrap]

Running:

# Bun
bunx @templ8/unwrap --help

# Node
npx @templ8/unwrap --help

Commands

  • init - Initialize a new project.
  • help - Display help information.
  • license - Generate a license file.

Templates

The following templates are available out of the box:

License

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

Angular

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();
    });
});

Development

To install dependencies:

bun install

To run:

bun run index.ts

Linking

bun link

Now you can run unwrap from anywhere.

Readme

Keywords

none

Package Sidebar

Install

npm i @templ8/unwrap

Weekly Downloads

0

Version

0.0.3

License

Apache-2.0

Unpacked Size

22.3 kB

Total Files

22

Last publish

Collaborators

  • denysvuika