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

Commit

Permalink
Merge branch 'release/v1.3.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
manuth committed Nov 26, 2018
2 parents 57a81fe + a81bddc commit b66f640
Show file tree
Hide file tree
Showing 19 changed files with 613 additions and 1,035 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## TSGeneratorGenerator v1.3.0
- Replaced generated code by modules
- Improved user-experience
- Provided the functionality to customize the context based on the source- and destination-file
- Provided the functionality to set custom processors for file-mappings

[Show differences][v1.3.0]

## TSGeneratorGenerator v1.2.3
- Improved the `package.json`-template
- Reworked the ignore-files
Expand Down Expand Up @@ -48,4 +56,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[v1.2.0]: https://github.com/manuth/TSGeneratorGenerator/compare/v1.0.1...v1.2.0
[v1.2.1]: https://github.com/manuth/TSGeneratorGenerator/compare/v1.2.0...v1.2.1
[v1.2.2]: https://github.com/manuth/TSGeneratorGenerator/compare/v1.2.1...v1.2.2
[v1.2.3]: https://github.com/manuth/TSGeneratorGenerator/compare/v1.2.2...v1.2.3
[v1.2.3]: https://github.com/manuth/TSGeneratorGenerator/compare/v1.2.2...v1.2.3
[v1.3.0]: https://github.com/manuth/TSGeneratorGenerator/compare/v1.2.3...v1.3.0
47 changes: 18 additions & 29 deletions package-lock.json

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

15 changes: 8 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "generator-ts-generator",
"version": "1.2.3",
"version": "1.3.0",
"description": "A Generator for Yeoman Generators Written in TypeScript.",
"author": "Manuel Thalmann <[email protected]>",
"license": "MIT",
Expand All @@ -19,17 +19,18 @@
},
"homepage": "https://github.com/manuth/TSGeneratorGenerator#readme",
"scripts": {
"watch": "tsc -p . --watch",
"compile": "tsc -p .",
"watch": "tsc -p . --watch",
"clean": "rimraf ./lib",
"lint": "tslint -p ./ -t verbose",
"test": "mocha",
"prepare": "npm run compile"
"prepare": "npm run clean && npm run compile"
},
"dependencies": {
"chalk": "^2.4.1",
"dedent": "^0.7.0",
"extended-yo-generator": "^1.0.2",
"fs-extra": "^7.0.1",
"inquirer": "^6.2.0",
"lodash.camelcase": "^4.3.0",
"lodash.kebabcase": "^4.1.1",
"yeoman-generator": "^3.1.1",
Expand All @@ -38,19 +39,19 @@
"devDependencies": {
"@types/dedent": "^0.7.0",
"@types/fs-extra": "^5.0.4",
"@types/inquirer": "0.0.43",
"@types/lodash.camelcase": "^4.3.4",
"@types/lodash.kebabcase": "^4.1.4",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.9",
"@types/node": "^10.12.10",
"@types/yeoman-generator": "^3.0.1",
"@types/yeoman-test": "^1.7.4",
"@types/yosay": "0.0.29",
"mocha": "^5.2.0",
"npm": "^6.4.1",
"rimraf": "^2.6.2",
"tslint": "^5.11.0",
"typescript": "^3.1.6",
"typescript-tslint-plugin": "0.1.0",
"typescript-tslint-plugin": "^0.1.0",
"yeoman-test": "^1.9.1",
"yo": "^2.0.5"
}
Expand Down
Loading

0 comments on commit b66f640

Please sign in to comment.