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

Commit 25f38e0

Browse files
committed
Merge branch 'release/v1.1.0' into master
2 parents 8aaeab6 + 90c6e43 commit 25f38e0

File tree

11 files changed

+105
-66
lines changed

11 files changed

+105
-66
lines changed

CHANGELOG.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,19 @@ 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.3...dev)
9+
[Show differences](https://github.com/manuth/TSProjectGenerator/compare/v1.1.0...dev)
10+
11+
## TSProjectGenerator v1.1.0
12+
### Added
13+
- Statements to the generated `package.json` files which ensure the package is published with public access
14+
15+
### Updated
16+
- All dependencies
17+
18+
### Fixed
19+
- Slow tests by increasing timeouts
20+
21+
[Show differences](https://github.com/manuth/TSProjectGenerator/compare/v1.0.3...v1.1.0)
1022

1123
## TSProjectGenerator v1.0.3
1224
### Fixed

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.3",
2+
"version": "1.1.0",
33
"packages": [
44
"./packages/*"
55
],

package-lock.json

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

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"@types/gulp-rename": "0.0.33",
2828
"@types/merge-stream": "^1.1.2",
2929
"@types/minimist": "^1.2.0",
30-
"@types/node": "^14.6.2",
30+
"@types/node": "^14.6.4",
3131
"@types/npm-which": "^3.0.0",
3232
"@types/through2": "^2.0.36",
3333
"@types/vinyl": "^2.0.4",
@@ -37,9 +37,9 @@
3737
"concurrently": "^5.3.0",
3838
"copy-and-watch": "^0.1.5",
3939
"diff": "^4.0.2",
40-
"eslint": "^7.8.0",
40+
"eslint": "^7.8.1",
4141
"eslint-plugin-import": "^2.22.0",
42-
"eslint-plugin-jsdoc": "^30.3.0",
42+
"eslint-plugin-jsdoc": "^30.3.1",
4343
"fs-extra": "^9.0.1",
4444
"git-branch": "^2.0.1",
4545
"glob": "^7.1.6",

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

Lines changed: 23 additions & 17 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: 5 additions & 5 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.3",
3+
"version": "1.1.0",
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.3",
44-
"@manuth/generator-ts-project": "^1.0.3",
44+
"@manuth/generator-ts-project": "^1.1.0",
4545
"chalk": "^4.1.0",
4646
"dedent": "^0.7.0",
4747
"detect-newline": "^3.1.0",
@@ -58,16 +58,16 @@
5858
"@types/dedent": "^0.7.0",
5959
"@types/fs-extra": "^9.0.1",
6060
"@types/mocha": "^8.0.3",
61-
"@types/node": "^14.6.2",
61+
"@types/node": "^14.6.4",
6262
"@types/yaml": "^1.9.7",
6363
"@types/yosay": "0.0.29",
6464
"@typescript-eslint/eslint-plugin": "^4.0.1",
6565
"@typescript-eslint/eslint-plugin-tslint": "^4.0.1",
6666
"@typescript-eslint/parser": "^4.0.1",
6767
"concurrently": "^5.3.0",
68-
"eslint": "^7.8.0",
68+
"eslint": "^7.8.1",
6969
"eslint-plugin-import": "^2.22.0",
70-
"eslint-plugin-jsdoc": "^30.3.0",
70+
"eslint-plugin-jsdoc": "^30.3.1",
7171
"mocha": "^8.1.3",
7272
"rimraf": "^3.0.2",
7373
"shusher": "^0.1.1",

packages/generator-my-ts-project/src/tests/DroneFileMapping.test.ts

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,23 +69,27 @@ export function DroneFileMappingTests(context: TestContext<MyTSModuleGenerator>)
6969

7070
test(
7171
"Checking whether `publish` commands are replaced correctly…",
72-
async () =>
72+
async function()
7373
{
74+
this.timeout(20 * 1000);
7475
Assert.ok(await AssertCommand((command) => command.startsWith("npm publish")));
7576
Assert.ok(await AssertCommand((command) => !command.startsWith("npx lerna publish"), true));
7677
});
7778

7879
test(
7980
"Checking whether `lerna exec` commands are replaced correctly…",
80-
async () =>
81+
async function()
8182
{
83+
this.timeout(20 * 1000);
8284
Assert.ok(await AssertCommand((command) => !command.startsWith("npx lerna exec"), true));
8385
});
8486

8587
test(
8688
"Checking whether github-releases are adjusted correctly…",
87-
async () =>
89+
async function()
8890
{
91+
this.timeout(20 * 1000);
92+
8993
Assert.ok(
9094
(await fileMappingOptions.Transform(await fileMappingOptions.Metadata)).every(
9195
(document) =>

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

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

0 commit comments

Comments
 (0)