Skip to content

Commit

Permalink
feat: rebrand name to House Of Angular (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
pwiorek committed Oct 6, 2023
1 parent b892372 commit e49565f
Show file tree
Hide file tree
Showing 10 changed files with 63 additions and 63 deletions.
2 changes: 1 addition & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Please check if your PR fulfills the following requirements:

- [ ] The commit message follows our guidelines: https://github.com/valueadd-poland/nestjs-packages/blob/master/CONTRIBUTING.md#git-guidelines
- [ ] The commit message follows our guidelines: https://github.com/HouseOfAngular/nestjs-packages/blob/master/CONTRIBUTING.md#git-guidelines
- [ ] Tests for the changes have been added (for bug fixes / features)

## PR Type
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# ValueAdd NestJS Packages
# House of Angular NestJS Packages

[![lerna](https://img.shields.io/badge/maintained%20with-lerna-cc00ff.svg)](https://lerna.js.org/)
[![build](https://github.com/valueadd-poland/nestjs-packages/workflows/MASTER%20CI/badge.svg)](https://github.com/valueadd-poland/nestjs-packages/actions?query=workflow%3A%22MASTER+CI%22)
[![build](https://github.com/HouseOfAngular/nestjs-packages/workflows/MASTER%20CI/badge.svg)](https://github.com/HouseOfAngular/nestjs-packages/actions?query=workflow%3A%22MASTER+CI%22)

A collection of packages, modules and utilities for NestJS.

| Package | Description | Version | Changelog |
| ------------------------------------------------------------- | ------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------ |
| [`@valueadd/nestjs-streaming`](packages/streaming) | Useful providers that allows working with streaming like responses | [![version](https://img.shields.io/npm/v/@valueadd/nestjs-streaming.svg)](https://www.npmjs.com/package/@valueadd/nestjs-streaming) | [changelog](packages/streaming/CHANGELOG.md) |
| [`@valueadd/nestjs-ng-pdf-generator`](packages/pdf-generator) | Extension to the @nestjs/ng-universal with pdf-generator api | [![version](https://img.shields.io/npm/v/@valueadd/nestjs-ng-pdf-generator.svg)](https://www.npmjs.com/package/@valueadd/nestjs-ng-pdf-generator) | [changelog](packages/pdf-generator/CHANGELOG.md) |
| [`@house-of-angular/nestjs-streaming`](packages/streaming) | Useful providers that allows working with streaming like responses | [![version](https://img.shields.io/npm/v/@house-of-angular/nestjs-streaming.svg)](https://www.npmjs.com/package/@house-of-angular/nestjs-streaming) | [changelog](packages/streaming/CHANGELOG.md) |
| [`@house-of-angular/nestjs-ng-pdf-generator`](packages/pdf-generator) | Extension to the @nestjs/ng-universal with pdf-generator api | [![version](https://img.shields.io/npm/v/@house-of-angular/nestjs-ng-pdf-generator.svg)](https://www.npmjs.com/package/@house-of-angular/nestjs-ng-pdf-generator) | [changelog](packages/pdf-generator/CHANGELOG.md) |

## Development

Expand Down
66 changes: 33 additions & 33 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions packages/pdf-generator/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# @valueadd/nestjs-ng-pdf-generator
# @house-of-angular/nestjs-ng-pdf-generator

[![version](https://img.shields.io/npm/v/@valueadd/nestjs-ng-pdf-generator.svg)](https://www.npmjs.com/package/@valueadd/nestjs-ng-pdf-generator)
[![downloads](https://img.shields.io/npm/dt/@valueadd/nestjs-ng-pdf-generator.svg)](https://www.npmjs.com/package/@valueadd/nestjs-ng-pdf-generator)
[![version](https://img.shields.io/npm/v/@house-of-angular/nestjs-ng-pdf-generator.svg)](https://www.npmjs.com/package/@house-of-angular/nestjs-ng-pdf-generator)
[![downloads](https://img.shields.io/npm/dt/@house-of-angular/nestjs-ng-pdf-generator.svg)](https://www.npmjs.com/package/@house-of-angular/nestjs-ng-pdf-generator)

> Extension to the [@nestjs/ng-universal](https://github.com/nestjs/ng-universal) that adds the generic endpoint 'pdf-generator' that will return Angular view converted to the pdf.
> GET request to the pdf-generator/:any-path will open your app at the "any-path" and trigger the "to pdf" browser action.
Expand Down
12 changes: 6 additions & 6 deletions packages/pdf-generator/package.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
{
"name": "@valueadd/nestjs-ng-pdf-generator",
"version": "0.1.2",
"name": "@house-of-angular/nestjs-ng-pdf-generator",
"version": "0.2.0",
"description": "Pdf generator with for NestJS with templates based on Angular",
"keywords": [
"pdf",
"nestjs",
"angular",
"angular-universal"
],
"homepage": "https://github.com/valueadd-poland/nestjs-packages",
"homepage": "https://github.com/HouseOfAngular/nestjs-packages",
"bugs": {
"url": "https://github.com/valueadd-poland/nestjs-packages/issues"
"url": "https://github.com/HouseOfAngular/nestjs-packages/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/valueadd-poland/nestjs-packages.git"
"url": "git+https://github.com/HouseOfAngular/nestjs-packages.git"
},
"license": "MIT",
"author": "Maciej Sikorski <maciejsikorski00@gmail.com>",
Expand All @@ -34,7 +34,7 @@
"dependencies": {
"@nestjs/ng-universal": "^7.1.3",
"@nguniversal/express-engine": "^15.2.1",
"@valueadd/nestjs-streaming": "^0.2.0",
"@house-of-angular/nestjs-streaming": "^0.3.0",
"puppeteer": "^20.7.1"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/pdf-generator/src/lib/pdf-generator.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { Controller, Get, Inject, Req, Res } from '@nestjs/common';
import { HttpAdapterHost } from '@nestjs/core';
import { Request, Response } from 'express';
import { PuppeteerWebPageToPdfService } from './puppeteer-web-page-to-pdf/puppeteer-web-page-to-pdf.service';
import { DownloadProviderFactory, downloadProviderFactoryToken } from '@valueadd/nestjs-streaming';
import { DownloadProviderFactory, downloadProviderFactoryToken } from '@house-of-angular/nestjs-streaming';
import { URL } from 'url';
import { PdfGeneratorOptions } from './interfaces/pdf-generator-options.interface';
import { PDF_GENERATOR_OPTIONS } from './injection-tokens/pdf-generator-options.injection-token';
Expand Down
2 changes: 1 addition & 1 deletion packages/pdf-generator/src/lib/pdf-generator.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { DynamicModule, Module } from '@nestjs/common';
import { PuppeteerWebPageToPdfService } from './puppeteer-web-page-to-pdf/puppeteer-web-page-to-pdf.service';
import { PdfGeneratorController } from './pdf-generator.controller';
import { AngularUniversalModule } from '@nestjs/ng-universal';
import { DownloadExpressModule } from '@valueadd/nestjs-streaming';
import { DownloadExpressModule } from '@house-of-angular/nestjs-streaming';
import { PdfGeneratorOptions } from './interfaces/pdf-generator-options.interface';
import { PDF_GENERATOR_OPTIONS } from './injection-tokens/pdf-generator-options.injection-token';

Expand Down
12 changes: 6 additions & 6 deletions packages/streaming/README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# @valueadd/nestjs-streaming
# @house-of-angular/nestjs-streaming

[![version](https://img.shields.io/npm/v/@valueadd/nestjs-streaming.svg)](https://www.npmjs.com/package/@valueadd/nestjs-streaming)
[![downloads](https://img.shields.io/npm/dt/@valueadd/nestjs-streaming.svg)](https://www.npmjs.com/package/@valueadd/nestjs-streaming)
[![version](https://img.shields.io/npm/v/@house-of-angular/nestjs-streaming.svg)](https://www.npmjs.com/package/@house-of-angular/nestjs-streaming)
[![downloads](https://img.shields.io/npm/dt/@house-of-angular/nestjs-streaming.svg)](https://www.npmjs.com/package/@house-of-angular/nestjs-streaming)

Useful providers that allows working with streaming like responses

## Installation

`npm install --save-dev @valueadd/nestjs-streaming`
`npm install --save-dev @house-of-angular/nestjs-streaming`

## Available modules

Expand All @@ -31,7 +31,7 @@ import {
ResponseStreamerFactory,
responseStreamerFactoryToken,
StreamingType
} from '@valueadd/nestjs-streaming';
} from '@house-of-angular/nestjs-streaming';

@Controller()
export class AppController {
Expand All @@ -55,7 +55,7 @@ export class AppController {

```ts
import { Module } from '@nestjs/common';
import { DownloadExpressModule } from '@valueadd/nestjs-streaming';
import { DownloadExpressModule } from '@house-of-angular/nestjs-streaming';
import { AppController } from './app.controller';

@Module({
Expand Down
14 changes: 7 additions & 7 deletions packages/streaming/package.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
{
"name": "@valueadd/nestjs-streaming",
"version": "0.2.0",
"name": "@house-of-angular/nestjs-streaming",
"version": "0.3.0",
"description": "Useful providers that allows working with streaming like responses",
"keywords": [
"nestjs",
"NestJS"
],
"homepage": "https://github.com/valueadd-poland/nestjs-packages",
"homepage": "https://github.com/HouseOfAngular/nestjs-packages",
"bugs": {
"url": "https://github.com/valueadd-poland/nestjs-packages/issues"
"url": "https://github.com/HouseOfAngular/nestjs-packages/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/valueadd-poland/nestjs-packages.git",
"url": "git+https://github.com/HouseOfAngular/nestjs-packages.git",
"directory": "packages/streaming"
},
"license": "MIT",
"author": {
"name": "ValueAdd sp. z o.o.",
"email": "contact@valueadd.pl",
"url": "https://valueadd.pl/"
"email": "contact@houseofangular.io",
"url": "https://houseofangular.io/"
},
"main": "./dist/cjs/index.js",
"typings": "./dist/cjs/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"lib": ["es7"],
"baseUrl": "./src",
"paths": {
"@valueadd/*": ["./*/src"]
"@house-of-angular/*": ["./*/src"]
}
},
"exclude": ["node_modules"]
Expand Down

0 comments on commit e49565f

Please sign in to comment.