Skip to content
This repository has been archived by the owner on Apr 19, 2023. It is now read-only.

Commit

Permalink
Merge branch 'release/v11.0.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
manuth committed Aug 26, 2021
2 parents 17a514c + 4fdd3ab commit a163408
Show file tree
Hide file tree
Showing 11 changed files with 902 additions and 249 deletions.
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## ExtendedYoGenerator [Unreleased]

[Show differences](https://github.com/manuth/ExtendedYoGenerator/compare/v11.0.2...dev)
[Show differences](https://github.com/manuth/ExtendedYoGenerator/compare/v11.0.3...dev)

## ExtendedYoGenerator v11.0.3
### Fixed
- Broken type-declarations

### Added
- Tests for type-declarations

### Updated
- All dependencies

[Show differences](https://github.com/manuth/ExtendedYoGenerator/compare/v11.0.2...v11.0.3)

## ExtendedYoGenerator v11.0.2
### Fixed
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "11.0.2",
"version": "11.0.3",
"packages": [
"./packages/*"
],
Expand Down
323 changes: 168 additions & 155 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"@manuth/tsconfig": "^2.0.3",
"@manuth/typescript-eslint-plugin": "^1.4.2",
"@types/git-branch": "^2.0.1",
"@types/node": "^16.7.1",
"@types/node": "^16.7.2",
"@types/npm-which": "^3.0.1",
"@types/ts-nameof": "^4.2.1",
"concurrently": "^6.2.1",
Expand Down
52 changes: 27 additions & 25 deletions packages/extended-yo-generator-test/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/extended-yo-generator-test/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@manuth/extended-yo-generator-test",
"version": "11.0.2",
"version": "11.0.3",
"description": "Provides tools for testing generators created using `@manuth/extended-yo-generator`",
"author": "Manuel Thalmann <m@nuth.ch>",
"license": "MIT",
Expand Down Expand Up @@ -42,7 +42,7 @@
"patchTypeScript": "ts-patch install && ts-patch --persist"
},
"dependencies": {
"@manuth/extended-yo-generator": "^11.0.2",
"@manuth/extended-yo-generator": "^11.0.3",
"@types/yeoman-test": "^4.0.2",
"comment-json": "^4.1.1",
"fs-extra": "^10.0.0",
Expand All @@ -56,7 +56,7 @@
"@types/fs-extra": "^9.0.12",
"@types/lodash.clonedeep": "^4.5.6",
"@types/mocha": "^9.0.0",
"@types/node": "^16.7.1",
"@types/node": "^16.7.2",
"@types/ts-nameof": "^4.2.1",
"concurrently": "^6.2.1",
"lodash.clonedeep": "^4.5.0",
Expand Down
5 changes: 4 additions & 1 deletion packages/extended-yo-generator/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,8 @@ module.exports = {
join(__dirname, "tsconfig.eslint.json"),
join(__dirname, "src", "tests", "tsconfig.json")
]
}
},
ignorePatterns: [
"**/*.test-d.ts"
]
};

0 comments on commit a163408

Please sign in to comment.