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

Commit b3c3b55

Browse files
committed
Merge branch 'release/v1.0.1' into master
2 parents 228a8af + 8969848 commit b3c3b55

File tree

9 files changed

+38
-28
lines changed

9 files changed

+38
-28
lines changed

.drone.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ steps:
2626
from_secret: npm_token
2727
commands:
2828
- echo "//registry.npmjs.org/:_authToken=$${NPM_TOKEN}" > ~/.npmrc
29-
- npx lerna publish from-package -y | exit 0
29+
- npx lerna publish from-package -y
3030
when:
3131
event:
3232
- tag

CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## TSProjectGenerator [Unreleased]
88

9-
[Show differences](https://github.com/manuth/TSProjectGenerator/compare/v1.0.0...dev)
9+
[Show differences](https://github.com/manuth/TSProjectGenerator/compare/v1.0.1...dev)
10+
11+
## TSProjectGenerator v1.0.1
12+
### Updated
13+
- All dependencies
14+
15+
### Fixed
16+
- Incorrect drone-pipeline
17+
- GitHub Packages mechanism
18+
19+
[Show differences](https://github.com/manuth/TSProjectGenerator/compare/v1.0.0...v1.0.1)
1020

1121
## TSProjectGenerator v1.0.0
1222
Initial release

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.0.0",
2+
"version": "1.0.1",
33
"packages": [
44
"./packages/*"
55
],

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"@types/gulp": "^4.0.6",
2727
"@types/merge-stream": "^1.1.2",
2828
"@types/minimist": "^1.2.0",
29-
"@types/node": "^14.6.1",
29+
"@types/node": "^14.6.2",
3030
"@types/npm-which": "^3.0.0",
3131
"@types/through2": "^2.0.36",
3232
"@types/vinyl": "^2.0.4",

packages/generator-my-ts-project/package-lock.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/generator-my-ts-project/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@manuth/generator-my-ts-project",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "Generates TypeScript-Projects with custom additions",
55
"author": "Manuel Thalmann <[email protected]>",
66
"keywords": [
@@ -41,7 +41,7 @@
4141
},
4242
"dependencies": {
4343
"@manuth/extended-yo-generator": "^7.3.2",
44-
"@manuth/generator-ts-project": "^1.0.0",
44+
"@manuth/generator-ts-project": "^1.0.1",
4545
"chalk": "^4.1.0",
4646
"dedent": "^0.7.0",
4747
"detect-newline": "^3.1.0",
@@ -58,7 +58,7 @@
5858
"@types/dedent": "^0.7.0",
5959
"@types/fs-extra": "^9.0.1",
6060
"@types/mocha": "^8.0.3",
61-
"@types/node": "^14.6.1",
61+
"@types/node": "^14.6.2",
6262
"@types/yaml": "^1.9.7",
6363
"@types/yosay": "0.0.29",
6464
"@typescript-eslint/eslint-plugin": "^3.10.1",
@@ -68,7 +68,7 @@
6868
"eslint": "^7.7.0",
6969
"eslint-plugin-import": "^2.22.0",
7070
"eslint-plugin-jsdoc": "^30.3.0",
71-
"mocha": "^8.1.2",
71+
"mocha": "^8.1.3",
7272
"rimraf": "^3.0.2",
7373
"shusher": "^0.1.1",
7474
"tslint": "^6.1.3",

packages/generator-ts-project/package-lock.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/generator-ts-project/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@manuth/generator-ts-project",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "A Set of Generators for Creating Projects Written in TypeScript",
55
"author": "Manuel Thalmann <[email protected]>",
66
"license": "MIT",
@@ -77,7 +77,7 @@
7777
"@types/lodash.camelcase": "^4.3.6",
7878
"@types/lodash.kebabcase": "^4.1.6",
7979
"@types/mocha": "^8.0.3",
80-
"@types/node": "^14.6.1",
80+
"@types/node": "^14.6.2",
8181
"@types/npm-packlist": "^1.1.1",
8282
"@types/npm-which": "^3.0.0",
8383
"@types/validate-npm-package-name": "^3.0.0",
@@ -90,7 +90,7 @@
9090
"eslint-plugin-import": "^2.22.0",
9191
"eslint-plugin-jsdoc": "^30.3.0",
9292
"markdownlint-cli": "^0.23.2",
93-
"mocha": "^8.1.2",
93+
"mocha": "^8.1.3",
9494
"npm-packlist": "^2.1.2",
9595
"npm-which": "^3.0.1",
9696
"random-js": "^2.1.0",

0 commit comments

Comments
 (0)