Skip to content

Commit

Permalink
fix: update dependencies and deprecate Record for LogRecord
Browse files Browse the repository at this point in the history
  • Loading branch information
christophehurpeau committed Feb 2, 2019
1 parent 642d0dd commit 2d0a758
Show file tree
Hide file tree
Showing 405 changed files with 2,461 additions and 2,106 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: 2
jobs:
test-node8:
docker:
- image: circleci/node:8.14
- image: circleci/node:8.15
steps:
- checkout
- restore_cache:
Expand Down Expand Up @@ -36,7 +36,7 @@ jobs:

test-node11:
docker:
- image: circleci/node:11.3
- image: circleci/node:11.6
steps:
- checkout
- restore_cache:
Expand All @@ -56,7 +56,7 @@ jobs:

test-node10:
docker:
- image: circleci/node:10.14
- image: circleci/node:10.15
steps:
- checkout
- restore_cache:
Expand Down
33 changes: 33 additions & 0 deletions .yo-rc.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,39 @@
"authorName": "Christophe Hurpeau",
"authorEmail": "christophe@hurpeau.com",
"authorUrl": "https://christophe.hurpeau.com"
},
"monorepo": {
"ci": true,
"testing": true,
"codecov": true,
"documentation": true,
"packageNames": [
"nightingale",
"nightingale-ansi-formatter",
"nightingale-app-console",
"nightingale-browser-console",
"nightingale-browser-console-formatter",
"nightingale-console",
"nightingale-console-example",
"nightingale-console-output",
"nightingale-debug",
"nightingale-example",
"nightingale-formatter",
"nightingale-html-formatter",
"nightingale-json-formatter",
"nightingale-level-names",
"nightingale-levels",
"nightingale-logger",
"nightingale-markdown-formatter",
"nightingale-raw-formatter",
"nightingale-sentry",
"nightingale-slack",
"nightingale-string",
"nightingale-types",
"nightingale-web-processor",
"nightingale-winston-adapter"
],
"typescript": false
}
}
}
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"version": "independent",
"npmClient": "yarn",
"useWorkspaces": true,
"commands": {
"command": {
"publish": {
"npmClient": "npm"
}
Expand Down
16 changes: 9 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,11 @@
"workspaces": ["packages/*"],
"scripts": {
"build": "lerna run --stream --concurrency=1 build",
"build:definitions": "lerna run --stream build:definitions",
"generate:docs": "lerna run --parallel --ignore \"*-example\" generate:docs",
"lint": "lerna run --stream lint",
"preversion": "yarn run lint && yarn run build && yarn run generate:docs",
"postbuild": "yarn run build:definitions",
"preversion": "yarn run lint && yarn run build && yarn run build:definitions && yarn run generate:docs",
"release": "lerna publish --conventional-commits -m 'chore: release'",
"test": "lerna run --stream test",
"typescript-check": "lerna run --parallel typescript-check",
Expand All @@ -40,12 +42,12 @@
"extends": ["@commitlint/config-conventional"]
},
"devDependencies": {
"@commitlint/cli": "7.2.1",
"@commitlint/config-conventional": "7.1.2",
"husky": "1.2.1",
"lerna": "3.8.0",
"lint-staged": "8.1.0",
"pob-release": "4.6.3",
"@commitlint/cli": "7.5.0",
"@commitlint/config-conventional": "7.5.0",
"husky": "1.3.1",
"lerna": "3.10.8",
"lint-staged": "8.1.3",
"pob-release": "4.7.0",
"yarnhook": "0.3.0"
}
}
4 changes: 2 additions & 2 deletions packages/nightingale-ansi-formatter/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"parser": "typescript-eslint-parser",
"plugins": ["typescript"],
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
"extends": ["pob/babel-node", "pob/typescript"],
"overrides": [
{
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 2d0a758

Please sign in to comment.