doc: add new commit type

This commit is contained in:
Xymorot 2019-07-02 21:54:38 +02:00
parent e3e9832182
commit 1927106d55
14 changed files with 13 additions and 12 deletions

View File

@ -17,6 +17,7 @@ This project uses [Conventional Commits](https://www.conventionalcommits.or) wit
- `fix`: bugfixes
- `doc`: documentation
- `refactor`: code refactoring
- `config`: changing configuration (linter, build process)
Always try to split up your changes into coherent commits, a single commit should do a single thing.

View File

@ -1,5 +1,5 @@
import { Entity, ManyToMany } from 'typeorm';
import { MultiNamed } from './bases/multi-named';
import { MultiNamed } from './base/multi-named';
import { Book } from './book';
@Entity()

View File

@ -1,5 +1,5 @@
import { Column, Entity } from 'typeorm';
import { Base } from './base';
import { Base } from '../../base';
@Entity()
export abstract class MultiNamed extends Base {

View File

@ -1,6 +1,6 @@
import { Entity, JoinTable, ManyToMany, OneToMany } from 'typeorm';
import { Author } from './author';
import { MultiNamed } from './bases/multi-named';
import { MultiNamed } from './base/multi-named';
import { Character } from './character';
import { Copy } from './copy';
import { Fiction } from './fiction';

View File

@ -1,5 +1,5 @@
import { Entity, ManyToMany } from 'typeorm';
import { MultiNamed } from './bases/multi-named';
import { MultiNamed } from './base/multi-named';
import { Book } from './book';
import { Fiction } from './fiction';

View File

@ -1,5 +1,5 @@
import { Column, Entity, ManyToOne } from 'typeorm';
import { Base } from './bases/base';
import { Base } from '../base';
import { Copy } from './copy';
const enum CopyTypes {

View File

@ -1,5 +1,5 @@
import { Column, Entity, JoinTable, ManyToMany, ManyToOne, OneToMany } from 'typeorm';
import { Base } from './bases/base';
import { Base } from '../base';
import { Book } from './book';
import { CopyType } from './copy-type';
import { Language } from './language';

View File

@ -1,5 +1,5 @@
import { Entity, ManyToMany } from 'typeorm';
import { MultiNamed } from './bases/multi-named';
import { MultiNamed } from './base/multi-named';
import { Book } from './book';
import { Character } from './character';

View File

@ -1,5 +1,5 @@
import { Column, Entity, ManyToMany } from 'typeorm';
import { Base } from './bases/base';
import { Base } from '../base';
import { Copy } from './copy';
@Entity()

View File

@ -1,5 +1,5 @@
import { Entity, OneToMany } from 'typeorm';
import { MultiNamed } from './bases/multi-named';
import { MultiNamed } from './base/multi-named';
import { Source } from './source';
@Entity()

View File

@ -1,5 +1,5 @@
import { Column, Entity, ManyToMany, ManyToOne } from 'typeorm';
import { Base } from './bases/base';
import { Base } from '../base';
import { Copy } from './copy';
import { Site } from './site';

View File

@ -1,5 +1,5 @@
import { Entity, ManyToMany } from 'typeorm';
import { MultiNamed } from './bases/multi-named';
import { MultiNamed } from './base/multi-named';
import { Book } from './book';
@Entity()

View File

@ -1,5 +1,5 @@
import { Entity, ManyToMany } from 'typeorm';
import { MultiNamed } from './bases/multi-named';
import { MultiNamed } from './base/multi-named';
import { Copy } from './copy';
@Entity()