Skip to content

Commit

Permalink
Merge pull request #174 from jorgebodega/next
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgebodega committed Nov 2, 2022
2 parents 5b704ea + abe505d commit 602bca6
Show file tree
Hide file tree
Showing 38 changed files with 861 additions and 1,432 deletions.
9 changes: 8 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,13 @@ module.exports = {
'@typescript-eslint/interface-name-prefix': 'off',
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'import/order': 'warn',
'import/order': [
'warn',
{
alphabetize: {
order: 'asc',
},
},
],
},
}
8 changes: 8 additions & 0 deletions .github/workflows/commitlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@ jobs:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: pnpm/action-setup@v2
with:
version: latest
- uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
cache: pnpm
- run: pnpm install --frozen-lockfile
- uses: wagoid/commitlint-github-action@v5
with:
configFile: .commitlintrc
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
version: latest
- uses: actions/setup-node@v3
with:
node-version: lts/gallium
node-version-file: '.nvmrc'
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm test:cov
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
version: latest
- uses: actions/setup-node@v3
with:
node-version: lts/gallium
node-version-file: '.nvmrc'
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm format:ci
Expand All @@ -27,7 +27,7 @@ jobs:
version: latest
- uses: actions/setup-node@v3
with:
node-version: lts/gallium
node-version-file: '.nvmrc'
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm lint:ci
Expand All @@ -40,7 +40,7 @@ jobs:
version: latest
- uses: actions/setup-node@v3
with:
node-version: lts/gallium
node-version-file: '.nvmrc'
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm typecheck
Expand All @@ -53,7 +53,7 @@ jobs:
version: latest
- uses: actions/setup-node@v3
with:
node-version: lts/gallium
node-version-file: '.nvmrc'
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm test:ci
7 changes: 4 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@ on:
workflow_dispatch:
inputs:
dry-run:
description: 'Check release instead of publishing'
default: "false"
required: false
default: false
jobs:
release:
name: Generate a new release
Expand All @@ -16,7 +17,7 @@ jobs:
version: latest
- uses: actions/setup-node@v3
with:
node-version: lts/gallium
node-version-file: '.nvmrc'
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm build
Expand All @@ -26,4 +27,4 @@ jobs:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
with:
semantic_version: 19
dry_run: ${{ github.event.inputs.dry-run }}
dry_run: ${{ github.event.inputs.dry-run }}
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
lts/gallium
lts/hydrogen
41 changes: 41 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,44 @@
# [6.0.0-next.4](https://github.com/jorgebodega/typeorm-seeding/compare/v6.0.0-next.3...v6.0.0-next.4) (2022-11-02)

# [6.0.0-next.3](https://github.com/jorgebodega/typeorm-seeding/compare/v6.0.0-next.2...v6.0.0-next.3) (2022-10-15)

# [6.0.0-next.2](https://github.com/jorgebodega/typeorm-seeding/compare/v6.0.0-next.1...v6.0.0-next.2) (2022-08-22)


### Features

* add support for multiple paths on cli ([6ffb5dd](https://github.com/jorgebodega/typeorm-seeding/commit/6ffb5dd00dcb83c06b62a616855b344ab01f2096))

# [6.0.0-next.1](https://github.com/jorgebodega/typeorm-seeding/compare/v5.0.1-next.1...v6.0.0-next.1) (2022-08-18)


### chore

* remove factory definitions ([f2ede7c](https://github.com/jorgebodega/typeorm-seeding/commit/f2ede7c952a106db98ef817e6c9fc34a1a79dd96))


### Features

* force major version ([73ade47](https://github.com/jorgebodega/typeorm-seeding/commit/73ade475e1a1f44764d4090b04fe2abf9fcbe61b))


### BREAKING CHANGES

* Force version 6
* remove all factory related code in favor of @jorgebodega/typeorm-factory

## [5.0.1-next.2](https://github.com/jorgebodega/typeorm-seeding/compare/v5.0.1-next.1...v5.0.1-next.2) (2022-08-18)


### chore

* remove factory definitions ([f2ede7c](https://github.com/jorgebodega/typeorm-seeding/commit/f2ede7c952a106db98ef817e6c9fc34a1a79dd96))


### BREAKING CHANGES

* remove all factory related code in favor of @jorgebodega/typeorm-factory

## [5.0.2](https://github.com/jorgebodega/typeorm-seeding/compare/v5.0.1...v5.0.2) (2022-09-05)


Expand Down
Loading

0 comments on commit 602bca6

Please sign in to comment.