Skip to content

Commit

Permalink
chore() publish alpha version (next)
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilmysliwiec committed Dec 29, 2018
1 parent aaad9ae commit f0e9b40
Show file tree
Hide file tree
Showing 19 changed files with 70 additions and 48 deletions.
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
"packages": [
"packages/*"
],
"version": "5.5.0"
"version": "6.0.0-alpha.3"
}
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
"build:dev": "gulp build --dist node_modules/@nestjs && gulp move",
"postinstall": "opencollective",
"prerelease": "gulp copy-misc && gulp build --dist node_modules/@nestjs",
"publish": "npm run prerelease && npm run build && ./node_modules/.bin/lerna publish --force-publish --exact -m \"chore(@nestjs) publish %s release\"",
"publish:rc": "npm run prerelease && npm run build && ./node_modules/.bin/lerna publish --npm-tag=rc -m \"chore(@nestjs) publish %s release\"",
"publish:next": "npm run prerelease && npm run build && ./node_modules/.bin/lerna publish --npm-tag=next --skip-git -m \"chore(@nestjs) publish %s release\"",
"publish:beta": "npm run prerelease && npm run build && ./node_modules/.bin/lerna publish --npm-tag=beta -m \"chore(@nestjs) publish %s release\"",
"publish:test": "npm run prerelease && npm run build && ./node_modules/.bin/lerna publish --force-publish --npm-tag=test --skip-git -m \"chore(@nestjs) publish %s release\""
"publish": "npm run prerelease && npm run build && ./node_modules/.bin/lerna publish --force-publish --access public --exact -m \"chore(@nestjs) publish %s release\"",
"publish:rc": "npm run prerelease && npm run build && ./node_modules/.bin/lerna publish --npm-tag=rc --access public -m \"chore(@nestjs) publish %s release\"",
"publish:next": "npm run prerelease && npm run build && ./node_modules/.bin/lerna publish --npm-tag=next --access public --skip-git -m \"chore(@nestjs) publish %s release\"",
"publish:beta": "npm run prerelease && npm run build && ./node_modules/.bin/lerna publish --npm-tag=beta --access public -m \"chore(@nestjs) publish %s release\"",
"publish:test": "npm run prerelease && npm run build && ./node_modules/.bin/lerna publish --force-publish --access public --npm-tag=test --skip-git -m \"chore(@nestjs) publish %s release\""
},
"engines": {
"node": ">= 8.9.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/common/LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
(The MIT License)

Copyright (c) 2018 Kamil Myśliwiec <https://kamilmysliwiec.com>
Copyright (c) 2017 Kamil Myśliwiec <http://kamilmysliwiec.com>

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
Expand Down
5 changes: 4 additions & 1 deletion packages/common/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
{
"name": "@nestjs/common",
"version": "5.5.0",
"version": "6.0.0-alpha.3",
"description": "Nest - modern, fast, powerful node.js web framework (@common)",
"author": "Kamil Mysliwiec",
"repository": {
"type": "git",
"url": "https://github.com/nestjs/nest"
},
"publishConfig": {
"access": "public"
},
"license": "MIT",
"dependencies": {
"axios": "0.18.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
(The MIT License)

Copyright (c) 2018 Kamil Myśliwiec <https://kamilmysliwiec.com>
Copyright (c) 2017 Kamil Myśliwiec <http://kamilmysliwiec.com>

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
Expand Down
6 changes: 3 additions & 3 deletions packages/core/middleware/middleware-module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ export class MiddlewareModule {
async <TRequest, TResponse>(
req: TRequest,
res: TResponse,
next: Function,
next: () => void,
) => {
const contextId = { id: 1 };
const contextInstance = await this.injector.loadPerContext(
Expand All @@ -208,7 +208,7 @@ export class MiddlewareModule {
private async createProxy<TRequest = any, TResponse = any>(
instance: NestMiddleware,
contextId = STATIC_CONTEXT,
): Promise<(req: TRequest, res: TResponse, next: Function) => void> {
): Promise<(req: TRequest, res: TResponse, next: () => void) => void> {
const exceptionsHandler = this.routerExceptionFilter.create(
instance,
instance.use,
Expand All @@ -225,7 +225,7 @@ export class MiddlewareModule {
proxy: <TRequest, TResponse>(
req: TRequest,
res: TResponse,
next: Function,
next: () => void,
) => void,
) {
const prefix = this.config.getGlobalPrefix();
Expand Down
5 changes: 4 additions & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
{
"name": "@nestjs/core",
"version": "5.5.0",
"version": "6.0.0-alpha.3",
"description": "Nest - modern, fast, powerful node.js web framework (@core)",
"author": "Kamil Mysliwiec",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nestjs/nest"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"postinstall": "opencollective || exit 0"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/core/router/router-explorer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ export class RouterExplorer {
async <TRequest, TResponse>(
req: TRequest,
res: TResponse,
next: Function,
next: () => void,
) => {
const contextId = createContextId();
this.registerRequestProvider(req, contextId);
Expand Down
4 changes: 2 additions & 2 deletions packages/core/router/router-proxy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@ export class RouterProxy {
err: TError,
req: TRequest,
res: TResponse,
next: Function,
next: () => void,
) => void,
exceptionsHandler: ExceptionsHandler,
) {
return async <TError, TRequest, TResponse>(
err: TError,
req: TRequest,
res: TResponse,
next: Function,
next: () => void,
) => {
try {
await targetCallback(err, req, res, next);
Expand Down
2 changes: 1 addition & 1 deletion packages/microservices/LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
(The MIT License)

Copyright (c) 2018 Kamil Myśliwiec <https://kamilmysliwiec.com>
Copyright (c) 2017 Kamil Myśliwiec <http://kamilmysliwiec.com>

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
Expand Down
5 changes: 4 additions & 1 deletion packages/microservices/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
{
"name": "@nestjs/microservices",
"version": "5.5.0",
"version": "6.0.0-alpha.3",
"description": "Nest - modern, fast, powerful node.js web framework (@microservices)",
"author": "Kamil Mysliwiec",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nestjs/nest"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"iterare": "0.0.8",
"json-socket": "^0.2.1",
Expand Down
11 changes: 6 additions & 5 deletions packages/platform-express/package.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
{
"name": "@nestjs/platform-express",
"version": "5.4.1",
"description":
"Nest - modern, fast, powerful node.js web framework (@platform-express)",
"version": "6.0.0-alpha.3",
"description": "Nest - modern, fast, powerful node.js web framework (@platform-express)",
"author": "Kamil Mysliwiec",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nestjs/nest"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"body-parser": "1.18.3",
"cors": "2.8.4",
"express": "4.16.3",
"multer": "1.3.0"
},
"peerDependencies": {}
}
}
11 changes: 6 additions & 5 deletions packages/platform-fastify/package.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
{
"name": "@nestjs/platform-fastify",
"version": "5.4.1",
"description":
"Nest - modern, fast, powerful node.js web framework (@platform-fastify)",
"version": "6.0.0-alpha.3",
"description": "Nest - modern, fast, powerful node.js web framework (@platform-fastify)",
"author": "Kamil Mysliwiec",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nestjs/nest"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"fastify": "^1.13.1",
"fastify-cors": "^0.2.0",
"fastify-formbody": "2.0.3",
"path-to-regexp": "2.2.1"
},
"peerDependencies": {}
}
}
17 changes: 10 additions & 7 deletions packages/platform-socket.io/package.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,22 @@
{
"name": "@nestjs/platform-socket.io",
"version": "5.4.1",
"version": "6.0.0-alpha.3",
"description": "Nest - modern, fast, powerful node.js web framework (@platform-socket.io)",
"author": "Kamil Mysliwiec",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nestjs/nest"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@types/express": "^4.0.39",
"body-parser": "1.18.3",
"cors": "2.8.4",
"express": "4.16.3",
"multer": "1.3.0"
"socket.io": "^2.1.1"
},
"peerDependencies": {}
"peerDependencies": {
"@nestjs/common": "^5.0.0",
"@nestjs/websockets": "^5.0.0",
"rxjs": "^6.0.0"
}
}
17 changes: 10 additions & 7 deletions packages/platform-ws/package.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,22 @@
{
"name": "@nestjs/platform-ws",
"version": "5.4.1",
"version": "6.0.0-alpha.3",
"description": "Nest - modern, fast, powerful node.js web framework (@platform-ws)",
"author": "Kamil Mysliwiec",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nestjs/nest"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@types/express": "^4.0.39",
"body-parser": "1.18.3",
"cors": "2.8.4",
"express": "4.16.3",
"multer": "1.3.0"
"ws": "^5.1.1"
},
"peerDependencies": {}
"peerDependencies": {
"@nestjs/common": "^5.0.0",
"@nestjs/websockets": "^5.0.0",
"rxjs": "^6.0.0"
}
}
2 changes: 1 addition & 1 deletion packages/testing/LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
(The MIT License)

Copyright (c) 2018 Kamil Myśliwiec <https://kamilmysliwiec.com>
Copyright (c) 2017 Kamil Myśliwiec <http://kamilmysliwiec.com>

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
Expand Down
5 changes: 4 additions & 1 deletion packages/testing/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
{
"name": "@nestjs/testing",
"version": "5.5.0",
"version": "6.0.0-alpha.3",
"description": "Nest - modern, fast, powerful node.js web framework (@testing)",
"author": "Kamil Mysliwiec",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nestjs/nest"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"optional": "0.1.4"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/websockets/LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
(The MIT License)

Copyright (c) 2018 Kamil Myśliwiec <https://kamilmysliwiec.com>
Copyright (c) 2017 Kamil Myśliwiec <http://kamilmysliwiec.com>

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
Expand Down
8 changes: 5 additions & 3 deletions packages/websockets/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
{
"name": "@nestjs/websockets",
"version": "5.5.0",
"description":
"Nest - modern, fast, powerful node.js web framework (@websockets)",
"version": "6.0.0-alpha.3",
"description": "Nest - modern, fast, powerful node.js web framework (@websockets)",
"author": "Kamil Mysliwiec",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nestjs/nest"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"iterare": "0.0.8"
},
Expand Down

0 comments on commit f0e9b40

Please sign in to comment.