Skip to content

Commit 6f24e03

Browse files
Travis CI build: 41 v1.6.1 [ci skip]
1 parent 0cc2d53 commit 6f24e03

9 files changed

Lines changed: 20 additions & 20 deletions

File tree

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"packages": [
55
"packages/*"
66
],
7-
"version": "1.6.0",
7+
"version": "1.6.1",
88
"command": {
99
"bootstrap": {
1010
"npmClientArgs": [

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tsed/cli-root",
3-
"version": "1.6.0",
3+
"version": "1.6.1",
44
"description": "CLI to bootstrap your Ts.ED project",
55
"private": true,
66
"scripts": {

packages/cli-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tsed/cli-core",
3-
"version": "1.6.0",
3+
"version": "1.6.1",
44
"main": "./lib/index.js",
55
"typings": "./lib/index.d.ts",
66
"description": "Build your CLI with TypeScript and Decorators",

packages/cli-plugin-jest/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "@tsed/cli-plugin-jest",
3-
"version": "1.6.0",
3+
"version": "1.6.1",
44
"main": "./lib/index.js",
55
"typings": "./lib/index.d.ts",
66
"devDependencies": {
7-
"@tsed/cli": "1.6.0",
8-
"@tsed/cli-core": "1.6.0"
7+
"@tsed/cli": "1.6.1",
8+
"@tsed/cli-core": "1.6.1"
99
},
1010
"scripts": {
1111
"build": "tsc --build tsconfig.compile.json",

packages/cli-plugin-mocha/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "@tsed/cli-plugin-mocha",
3-
"version": "1.6.0",
3+
"version": "1.6.1",
44
"main": "./lib/index.js",
55
"typings": "./lib/index.d.ts",
66
"devDependencies": {
7-
"@tsed/cli": "1.6.0",
8-
"@tsed/cli-core": "1.6.0"
7+
"@tsed/cli": "1.6.1",
8+
"@tsed/cli-core": "1.6.1"
99
},
1010
"scripts": {
1111
"build": "tsc --build tsconfig.compile.json",

packages/cli-plugin-passport/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"name": "@tsed/cli-plugin-passport",
3-
"version": "1.6.0",
3+
"version": "1.6.1",
44
"main": "./lib/index.js",
55
"typings": "./lib/index.d.ts",
66
"dependencies": {
77
"change-case": "^4.1.1",
88
"tslib": "1.11.1"
99
},
1010
"devDependencies": {
11-
"@tsed/cli": "1.6.0",
12-
"@tsed/cli-core": "1.6.0",
11+
"@tsed/cli": "1.6.1",
12+
"@tsed/cli-core": "1.6.1",
1313
"@types/change-case": "^2.3.1"
1414
},
1515
"scripts": {

packages/cli-plugin-tslint/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "@tsed/cli-plugin-tslint",
3-
"version": "1.6.0",
3+
"version": "1.6.1",
44
"main": "./lib/index.js",
55
"typings": "./lib/index.d.ts",
66
"devDependencies": {
7-
"@tsed/cli": "1.6.0",
8-
"@tsed/cli-core": "1.6.0"
7+
"@tsed/cli": "1.6.1",
8+
"@tsed/cli-core": "1.6.1"
99
},
1010
"scripts": {
1111
"build": "tsc --build tsconfig.compile.json",

packages/cli-testing/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tsed/cli-testing",
3-
"version": "1.6.0",
3+
"version": "1.6.1",
44
"main": "./lib/index.js",
55
"typings": "./lib/index.d.ts",
66
"description": "Utils to test you CLI based on Ts.ED CLI",
@@ -15,7 +15,7 @@
1515
"decorators"
1616
],
1717
"dependencies": {
18-
"@tsed/cli-core": "1.6.0",
18+
"@tsed/cli-core": "1.6.1",
1919
"tslib": "1.11.1"
2020
},
2121
"scripts": {

packages/cli/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tsed/cli",
3-
"version": "1.6.0",
3+
"version": "1.6.1",
44
"main": "./lib/index.js",
55
"typings": "./lib/index.d.ts",
66
"bin": {
@@ -24,13 +24,13 @@
2424
"decorators"
2525
],
2626
"dependencies": {
27-
"@tsed/cli-core": "1.6.0",
27+
"@tsed/cli-core": "1.6.1",
2828
"@tsed/logger": "^5.4.1",
2929
"change-case": "4.1.1",
3030
"tslib": "1.11.1"
3131
},
3232
"devDependencies": {
33-
"@tsed/cli-testing": "1.6.0",
33+
"@tsed/cli-testing": "1.6.1",
3434
"@types/change-case": "2.3.1"
3535
},
3636
"scripts": {

0 commit comments

Comments
 (0)