Skip to content

Commit

Permalink
Updated dependencies version
Browse files Browse the repository at this point in the history
Fixed lint issue
[skip ci]
  • Loading branch information
Christophe Nouguier committed Jan 13, 2019
1 parent bcd5f64 commit d0433e7
Show file tree
Hide file tree
Showing 5 changed files with 95 additions and 57 deletions.
6 changes: 3 additions & 3 deletions api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,9 @@
"@feathersjs/express": "^1.2.3",
"@feathersjs/feathers": "^3.1.7",
"@kalisio/kdk-billing": "^1.0.0",
"@kalisio/kdk-core": "^1.0.5",
"@kalisio/kdk-event": "^1.0.2",
"@kalisio/kdk-map": "^1.0.1",
"@kalisio/kdk-core": "1.0.6",
"@kalisio/kdk-event": "1.0.3",
"@kalisio/kdk-map": "1.0.3",
"@kalisio/kdk-notify": "^1.0.0",
"@kalisio/kdk-team": "^1.0.2",
"containerized": "^1.0.2",
Expand Down
34 changes: 17 additions & 17 deletions api/src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,30 +8,30 @@ const N = parseInt(process.env.NODE_APP_NB_INSTANCES)
let server

if (cluster.isMaster && (N > 1)) {
logger.info(`Launching master with pid ${process.pid}`);
logger.info(`Launching master with pid ${process.pid}`)

for (let i = 0; i < N; i++) {
cluster.fork()
}
} else {
server = new Server()
server = new Server()

const config = server.app.get('logs')
const logPath = _.get(config, 'DailyRotateFile.dirname')
if (logPath) {
// This will ensure the log directory does exist
fs.ensureDirSync(logPath)
}
const config = server.app.get('logs')
const logPath = _.get(config, 'DailyRotateFile.dirname')
if (logPath) {
// This will ensure the log directory does exist
fs.ensureDirSync(logPath)
}

if (require.main === module) {
process.on('unhandledRejection', (reason, p) =>
logger.error('Unhandled Rejection at: Promise ', p, reason)
)
if (require.main === module) {
process.on('unhandledRejection', (reason, p) =>
logger.error('Unhandled Rejection at: Promise ', p, reason)
)

server.run().then(() => {
logger.info(`Server with pid ${process.pid} started listening`)
})
}
server.run().then(() => {
logger.info(`Server with pid ${process.pid} started listening`)
})
}
}

export default server
export default server
53 changes: 36 additions & 17 deletions api/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,25 @@
passport "^0.4.0"
uuid "^3.1.0"

"@feathersjs/authentication@git+https://github.com/kalisio/authentication.git":
version "2.1.7"
uid b730e0624b112e9be372dea168702dc740037396
resolved "git+https://github.com/kalisio/authentication.git#b730e0624b112e9be372dea168702dc740037396"
dependencies:
"@feathersjs/commons" "^2.0.0"
"@feathersjs/errors" "^3.0.0"
"@feathersjs/socket-commons" "^3.1.2"
debug "^3.1.0"
jsonwebtoken "^8.0.0"
lodash.clone "^4.5.0"
lodash.merge "^4.6.0"
lodash.omit "^4.5.0"
lodash.pick "^4.4.0"
long-timeout "^0.1.1"
ms "^2.0.0"
passport "^0.4.0"
uuid "^3.1.0"

"@feathersjs/authentication@https://github.com/kalisio/authentication.git":
version "2.1.7"
resolved "https://github.com/kalisio/authentication.git#b730e0624b112e9be372dea168702dc740037396"
Expand Down Expand Up @@ -249,9 +268,9 @@
vue-stripe-elements-plus "^0.2.8"
winston "^2.3.1"

"@kalisio/kdk-core@^1.0.0":
version "1.0.0"
resolved "https://registry.yarnpkg.com/@kalisio/kdk-core/-/kdk-core-1.0.0.tgz#3e04636b693f3c7832994d3c869537d5731b095f"
"@kalisio/[email protected].6":
version "1.0.6"
resolved "https://registry.yarnpkg.com/@kalisio/kdk-core/-/kdk-core-1.0.6.tgz#6806087f282ca74c7e8e01022d59ae7c3bf7f342"
dependencies:
"@feathersjs/authentication" "https://github.com/kalisio/authentication.git"
"@feathersjs/authentication-jwt" "^2.0.1"
Expand Down Expand Up @@ -296,7 +315,7 @@
request "^2.81.0"
s3-blob-store "2.1.0"
showdown "^1.8.6"
sift "^5.0.0"
sift "^6.0.0"
socket.io-client "^1.7.3"
uberproto "^1.2.0"
vue "2.5.15"
Expand All @@ -306,9 +325,9 @@
winston "^2.3.1"
winston-daily-rotate-file "^1.7.2"

"@kalisio/kdk-core@^1.0.5":
version "1.0.5"
resolved "https://registry.yarnpkg.com/@kalisio/kdk-core/-/kdk-core-1.0.5.tgz#5ea9a6b4a53d70340166f784b0363cede9b96ba2"
"@kalisio/kdk-core@^1.0.0":
version "1.0.0"
resolved "https://registry.yarnpkg.com/@kalisio/kdk-core/-/kdk-core-1.0.0.tgz#3e04636b693f3c7832994d3c869537d5731b095f"
dependencies:
"@feathersjs/authentication" "https://github.com/kalisio/authentication.git"
"@feathersjs/authentication-jwt" "^2.0.1"
Expand Down Expand Up @@ -353,7 +372,7 @@
request "^2.81.0"
s3-blob-store "2.1.0"
showdown "^1.8.6"
sift "^6.0.0"
sift "^5.0.0"
socket.io-client "^1.7.3"
uberproto "^1.2.0"
vue "2.5.15"
Expand All @@ -363,9 +382,9 @@
winston "^2.3.1"
winston-daily-rotate-file "^1.7.2"

"@kalisio/kdk-event@^1.0.2":
version "1.0.2"
resolved "https://registry.yarnpkg.com/@kalisio/kdk-event/-/kdk-event-1.0.2.tgz#32eff31a1ee3745c04ec0d7b4ef8e162122e0f86"
"@kalisio/[email protected].3":
version "1.0.3"
resolved "https://registry.yarnpkg.com/@kalisio/kdk-event/-/kdk-event-1.0.3.tgz#0e51ca366548c356e8c9e6dc5dd64863d5072ec9"
dependencies:
"@feathersjs/authentication" "^2.1.7"
"@feathersjs/errors" "^3.3.0"
Expand All @@ -382,9 +401,9 @@
vue-avatar "^2.1.1"
winston "2.3.1"

"@kalisio/kdk-map@^1.0.0":
version "1.0.0"
resolved "https://registry.yarnpkg.com/@kalisio/kdk-map/-/kdk-map-1.0.0.tgz#5a2144e7a3a50c8104eeb8528142625d0e64cd29"
"@kalisio/[email protected].3":
version "1.0.3"
resolved "https://registry.yarnpkg.com/@kalisio/kdk-map/-/kdk-map-1.0.3.tgz#0a8b401c0a13201a4cbe4c5edad6b6a09bdc3c9a"
dependencies:
"@feathersjs/authentication" "^2.1.7"
"@feathersjs/errors" "^3.3.0"
Expand All @@ -410,9 +429,9 @@
vue "2.5.17"
winston "^2.3.1"

"@kalisio/kdk-map@^1.0.1":
version "1.0.1"
resolved "https://registry.yarnpkg.com/@kalisio/kdk-map/-/kdk-map-1.0.1.tgz#490f24090e6c4eabae9300c874e6b82d56f5709c"
"@kalisio/kdk-map@^1.0.0":
version "1.0.0"
resolved "https://registry.yarnpkg.com/@kalisio/kdk-map/-/kdk-map-1.0.0.tgz#5a2144e7a3a50c8104eeb8528142625d0e64cd29"
dependencies:
"@feathersjs/authentication" "^2.1.7"
"@feathersjs/errors" "^3.3.0"
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,9 @@
"dependencies": {
"@feathersjs/client": "^3.5.3",
"@kalisio/kdk-billing": "^1.0.0",
"@kalisio/kdk-core": "^1.0.5",
"@kalisio/kdk-event": "^1.0.2",
"@kalisio/kdk-map": "^1.0.1",
"@kalisio/kdk-core": "1.0.6",
"@kalisio/kdk-event": "1.0.3",
"@kalisio/kdk-map": "1.0.3",
"@kalisio/kdk-notify": "^1.0.0",
"@kalisio/kdk-team": "^1.0.2",
"@panter/vue-i18next": "^0.9.1",
Expand Down
53 changes: 36 additions & 17 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,25 @@
passport "^0.4.0"
uuid "^3.1.0"

"@feathersjs/authentication@git+https://github.com/kalisio/authentication.git":
version "2.1.7"
uid b730e0624b112e9be372dea168702dc740037396
resolved "git+https://github.com/kalisio/authentication.git#b730e0624b112e9be372dea168702dc740037396"
dependencies:
"@feathersjs/commons" "^2.0.0"
"@feathersjs/errors" "^3.0.0"
"@feathersjs/socket-commons" "^3.1.2"
debug "^3.1.0"
jsonwebtoken "^8.0.0"
lodash.clone "^4.5.0"
lodash.merge "^4.6.0"
lodash.omit "^4.5.0"
lodash.pick "^4.4.0"
long-timeout "^0.1.1"
ms "^2.0.0"
passport "^0.4.0"
uuid "^3.1.0"

"@feathersjs/authentication@https://github.com/kalisio/authentication.git":
version "2.1.7"
resolved "https://github.com/kalisio/authentication.git#b730e0624b112e9be372dea168702dc740037396"
Expand Down Expand Up @@ -238,9 +257,9 @@
vue-stripe-elements-plus "^0.2.8"
winston "^2.3.1"

"@kalisio/kdk-core@^1.0.0":
version "1.0.0"
resolved "https://registry.yarnpkg.com/@kalisio/kdk-core/-/kdk-core-1.0.0.tgz#3e04636b693f3c7832994d3c869537d5731b095f"
"@kalisio/[email protected].6":
version "1.0.6"
resolved "https://registry.yarnpkg.com/@kalisio/kdk-core/-/kdk-core-1.0.6.tgz#6806087f282ca74c7e8e01022d59ae7c3bf7f342"
dependencies:
"@feathersjs/authentication" "https://github.com/kalisio/authentication.git"
"@feathersjs/authentication-jwt" "^2.0.1"
Expand Down Expand Up @@ -285,7 +304,7 @@
request "^2.81.0"
s3-blob-store "2.1.0"
showdown "^1.8.6"
sift "^5.0.0"
sift "^6.0.0"
socket.io-client "^1.7.3"
uberproto "^1.2.0"
vue "2.5.15"
Expand All @@ -295,9 +314,9 @@
winston "^2.3.1"
winston-daily-rotate-file "^1.7.2"

"@kalisio/kdk-core@^1.0.5":
version "1.0.5"
resolved "https://registry.yarnpkg.com/@kalisio/kdk-core/-/kdk-core-1.0.5.tgz#5ea9a6b4a53d70340166f784b0363cede9b96ba2"
"@kalisio/kdk-core@^1.0.0":
version "1.0.0"
resolved "https://registry.yarnpkg.com/@kalisio/kdk-core/-/kdk-core-1.0.0.tgz#3e04636b693f3c7832994d3c869537d5731b095f"
dependencies:
"@feathersjs/authentication" "https://github.com/kalisio/authentication.git"
"@feathersjs/authentication-jwt" "^2.0.1"
Expand Down Expand Up @@ -342,7 +361,7 @@
request "^2.81.0"
s3-blob-store "2.1.0"
showdown "^1.8.6"
sift "^6.0.0"
sift "^5.0.0"
socket.io-client "^1.7.3"
uberproto "^1.2.0"
vue "2.5.15"
Expand All @@ -352,9 +371,9 @@
winston "^2.3.1"
winston-daily-rotate-file "^1.7.2"

"@kalisio/kdk-event@^1.0.2":
version "1.0.2"
resolved "https://registry.yarnpkg.com/@kalisio/kdk-event/-/kdk-event-1.0.2.tgz#32eff31a1ee3745c04ec0d7b4ef8e162122e0f86"
"@kalisio/[email protected].3":
version "1.0.3"
resolved "https://registry.yarnpkg.com/@kalisio/kdk-event/-/kdk-event-1.0.3.tgz#0e51ca366548c356e8c9e6dc5dd64863d5072ec9"
dependencies:
"@feathersjs/authentication" "^2.1.7"
"@feathersjs/errors" "^3.3.0"
Expand All @@ -371,9 +390,9 @@
vue-avatar "^2.1.1"
winston "2.3.1"

"@kalisio/kdk-map@^1.0.0":
version "1.0.0"
resolved "https://registry.yarnpkg.com/@kalisio/kdk-map/-/kdk-map-1.0.0.tgz#5a2144e7a3a50c8104eeb8528142625d0e64cd29"
"@kalisio/[email protected].3":
version "1.0.3"
resolved "https://registry.yarnpkg.com/@kalisio/kdk-map/-/kdk-map-1.0.3.tgz#0a8b401c0a13201a4cbe4c5edad6b6a09bdc3c9a"
dependencies:
"@feathersjs/authentication" "^2.1.7"
"@feathersjs/errors" "^3.3.0"
Expand All @@ -399,9 +418,9 @@
vue "2.5.17"
winston "^2.3.1"

"@kalisio/kdk-map@^1.0.1":
version "1.0.1"
resolved "https://registry.yarnpkg.com/@kalisio/kdk-map/-/kdk-map-1.0.1.tgz#490f24090e6c4eabae9300c874e6b82d56f5709c"
"@kalisio/kdk-map@^1.0.0":
version "1.0.0"
resolved "https://registry.yarnpkg.com/@kalisio/kdk-map/-/kdk-map-1.0.0.tgz#5a2144e7a3a50c8104eeb8528142625d0e64cd29"
dependencies:
"@feathersjs/authentication" "^2.1.7"
"@feathersjs/errors" "^3.3.0"
Expand Down

0 comments on commit d0433e7

Please sign in to comment.