Skip to content

Commit

Permalink
chore: pob update
Browse files Browse the repository at this point in the history
  • Loading branch information
christophehurpeau committed May 1, 2019
1 parent 5a5aba1 commit a809562
Show file tree
Hide file tree
Showing 187 changed files with 998 additions and 927 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Expand Up @@ -3,7 +3,7 @@ version: 2
jobs:
test-node8:
docker:
- image: circleci/node:8.15
- image: circleci/node:8.16
steps:
- checkout
- restore_cache:
Expand Down Expand Up @@ -35,7 +35,7 @@ jobs:

test-node11:
docker:
- image: circleci/node:11.13
- image: circleci/node:11.14
steps:
- checkout
- restore_cache:
Expand Down
5 changes: 2 additions & 3 deletions .gitignore
Expand Up @@ -14,9 +14,8 @@ yarn-error.log*
*.sublime-project
*.sublime-workspace

# typescript
*.tsbuildinfo

# Typescript
tsbuildinfo

#*
*$
Expand Down
8 changes: 4 additions & 4 deletions package.json
Expand Up @@ -14,7 +14,7 @@
"generate:docs": "lerna run --parallel --ignore \"*-example\" generate:docs",
"lint": "lerna run --stream lint",
"postbuild": "yarn run build:definitions",
"preversion": "yarn run lint --since && yarn run build --since && repository-check-dirty",
"preversion": "yarn run lint --since && yarn run build --since -- -- --no-clean && repository-check-dirty",
"release": "GH_TOKEN=$POB_GITHUB_TOKEN lerna version --conventional-commits --github-release -m 'chore: release' && lerna publish from-git",
"test": "lerna run --stream test",
"typescript-check": "lerna run --parallel typescript-check",
Expand Down Expand Up @@ -45,11 +45,11 @@
"@commitlint/cli": "7.5.2",
"@commitlint/config-conventional": "7.5.0",
"husky": "1.3.1",
"lerna": "3.13.1",
"lerna": "3.13.4",
"lint-staged": "8.1.5",
"repository-check-dirty": "1.0.2",
"typescript": "3.4.2",
"yarn-update-lock": "0.4.0",
"typescript": "3.4.5",
"yarn-update-lock": "0.6.0",
"yarnhook": "0.4.0"
}
}
3 changes: 3 additions & 0 deletions packages/nightingale-ansi-formatter/.eslintrc.json
@@ -1,6 +1,9 @@
{
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json"
},
"plugins": ["@typescript-eslint"],
"extends": [
"@pob/eslint-config-babel",
Expand Down
3 changes: 2 additions & 1 deletion packages/nightingale-ansi-formatter/.npmignore
Expand Up @@ -4,7 +4,8 @@
/samples
/test
/tsconfig.json
/tsconfig.build.*
/tsconfig.build.json
/dist/tsbuildinfo
.babelrc
.codeclimate.yml
.yo-rc.json
Expand Down
18 changes: 9 additions & 9 deletions packages/nightingale-ansi-formatter/package.json
Expand Up @@ -23,7 +23,7 @@
"build:definitions": "tsc -p tsconfig.build.json",
"clean": "rm -Rf docs dist test/node6 coverage",
"generate:test-coverage": "rm -Rf docs/coverage/ ; NODE_ENV=production BABEL_ENV=test jest --coverage --coverageReporters=pob-lcov-reporter --coverageDirectory=docs/coverage/",
"lint": "tsc && eslint --ext .ts --quiet src/",
"lint": "eslint --ext .ts --quiet src/",
"test": "jest",
"test:watch": "jest",
"watch": "pob-watch"
Expand Down Expand Up @@ -52,18 +52,18 @@
"nightingale-types": "^2.2.1"
},
"devDependencies": {
"@babel/core": "7.4.3",
"@pob/eslint-config-babel": "29.2.0",
"@pob/eslint-config-babel-node": "29.1.1",
"@pob/eslint-config-typescript": "29.2.0",
"@types/jest": "24.0.11",
"@babel/core": "7.4.4",
"@pob/eslint-config-babel": "31.0.0",
"@pob/eslint-config-babel-node": "31.0.0",
"@pob/eslint-config-typescript": "31.1.0",
"@types/jest": "24.0.12",
"babel-jest": "24.7.1",
"babel-preset-latest-node": "3.1.1",
"eslint": "5.16.0",
"jest": "24.7.1",
"pob-babel": "23.12.0",
"pob-lcov-reporter": "1.1.0",
"prettier": "1.16.4",
"pob-babel": "23.16.0",
"pob-lcov-reporter": "1.2.0",
"prettier": "1.17.0",
"xunit-file": "1.0.0"
}
}
1 change: 1 addition & 0 deletions packages/nightingale-ansi-formatter/tsconfig.build.json
Expand Up @@ -5,6 +5,7 @@
"noEmit": false,
"emitDeclarationOnly": true,
"outDir": "dist",
"tsBuildInfoFile": "dist/tsbuildinfo",
"isolatedModules": false,
"declaration": true,
"declarationMap": true
Expand Down
3 changes: 3 additions & 0 deletions packages/nightingale-app-console/.eslintrc.json
@@ -1,6 +1,9 @@
{
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json"
},
"plugins": ["@typescript-eslint"],
"extends": ["@pob/eslint-config-babel", "@pob/eslint-config-typescript"]
}
3 changes: 2 additions & 1 deletion packages/nightingale-app-console/.npmignore
Expand Up @@ -4,7 +4,8 @@
/samples
/test
/tsconfig.json
/tsconfig.build.*
/tsconfig.build.json
/dist/tsbuildinfo
.babelrc
.codeclimate.yml
.yo-rc.json
Expand Down
14 changes: 7 additions & 7 deletions packages/nightingale-app-console/package.json
Expand Up @@ -31,7 +31,7 @@
"build": "pob-build",
"build:definitions": "tsc -p tsconfig.build.json",
"clean": "rm -Rf docs dist test/node6 coverage",
"lint": "tsc && eslint --ext .ts --quiet src/",
"lint": "eslint --ext .ts --quiet src/",
"watch": "pob-watch"
},
"prettier": {
Expand All @@ -46,14 +46,14 @@
"source-map-support": "^0.4.14"
},
"devDependencies": {
"@babel/core": "7.4.3",
"@babel/preset-env": "7.4.3",
"@pob/eslint-config-babel": "29.2.0",
"@pob/eslint-config-typescript": "29.2.0",
"@babel/core": "7.4.4",
"@babel/preset-env": "7.4.4",
"@pob/eslint-config-babel": "31.0.0",
"@pob/eslint-config-typescript": "31.1.0",
"babel-preset-latest-node": "3.1.1",
"babel-preset-modern-browsers": "14.0.0",
"eslint": "5.16.0",
"pob-babel": "23.12.0",
"prettier": "1.16.4"
"pob-babel": "23.16.0",
"prettier": "1.17.0"
}
}
1 change: 1 addition & 0 deletions packages/nightingale-app-console/tsconfig.build.json
Expand Up @@ -5,6 +5,7 @@
"noEmit": false,
"emitDeclarationOnly": true,
"outDir": "dist",
"tsBuildInfoFile": "dist/tsbuildinfo",
"isolatedModules": false,
"declaration": true,
"declarationMap": true
Expand Down
3 changes: 3 additions & 0 deletions packages/nightingale-browser-console-formatter/.eslintrc.json
@@ -1,6 +1,9 @@
{
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json"
},
"plugins": ["@typescript-eslint"],
"extends": ["@pob/eslint-config-babel", "@pob/eslint-config-typescript"],
"overrides": [
Expand Down
3 changes: 2 additions & 1 deletion packages/nightingale-browser-console-formatter/.npmignore
Expand Up @@ -4,7 +4,8 @@
/samples
/test
/tsconfig.json
/tsconfig.build.*
/tsconfig.build.json
/dist/tsbuildinfo
.babelrc
.codeclimate.yml
.yo-rc.json
Expand Down
18 changes: 9 additions & 9 deletions packages/nightingale-browser-console-formatter/package.json
Expand Up @@ -32,7 +32,7 @@
"build:definitions": "tsc -p tsconfig.build.json",
"clean": "rm -Rf docs dist test/node6 coverage",
"generate:test-coverage": "rm -Rf docs/coverage/ ; NODE_ENV=production BABEL_ENV=test jest --coverage --coverageReporters=pob-lcov-reporter --coverageDirectory=docs/coverage/",
"lint": "tsc && eslint --ext .ts --quiet src/",
"lint": "eslint --ext .ts --quiet src/",
"test": "jest",
"test:watch": "jest",
"watch": "pob-watch"
Expand All @@ -59,20 +59,20 @@
"nightingale-types": "^2.2.1"
},
"devDependencies": {
"@babel/core": "7.4.3",
"@babel/preset-env": "7.4.3",
"@pob/eslint-config-babel": "29.2.0",
"@pob/eslint-config-typescript": "29.2.0",
"@types/jest": "24.0.11",
"@babel/core": "7.4.4",
"@babel/preset-env": "7.4.4",
"@pob/eslint-config-babel": "31.0.0",
"@pob/eslint-config-typescript": "31.1.0",
"@types/jest": "24.0.12",
"babel-jest": "24.7.1",
"babel-preset-latest-node": "3.1.1",
"babel-preset-modern-browsers": "14.0.0",
"eslint": "5.16.0",
"jest": "24.7.1",
"nightingale-levels": "^4.2.1",
"pob-babel": "23.12.0",
"pob-lcov-reporter": "1.1.0",
"prettier": "1.16.4",
"pob-babel": "23.16.0",
"pob-lcov-reporter": "1.2.0",
"prettier": "1.17.0",
"xunit-file": "1.0.0"
}
}
Expand Up @@ -5,6 +5,7 @@
"noEmit": false,
"emitDeclarationOnly": true,
"outDir": "dist",
"tsBuildInfoFile": "dist/tsbuildinfo",
"isolatedModules": false,
"declaration": true,
"declarationMap": true
Expand Down
3 changes: 3 additions & 0 deletions packages/nightingale-browser-console/.eslintrc.json
@@ -1,6 +1,9 @@
{
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json"
},
"plugins": ["@typescript-eslint"],
"extends": ["@pob/eslint-config-babel", "@pob/eslint-config-typescript"],
"env": {
Expand Down
3 changes: 2 additions & 1 deletion packages/nightingale-browser-console/.npmignore
Expand Up @@ -4,7 +4,8 @@
/samples
/test
/tsconfig.json
/tsconfig.build.*
/tsconfig.build.json
/dist/tsbuildinfo
.babelrc
.codeclimate.yml
.yo-rc.json
Expand Down
14 changes: 7 additions & 7 deletions packages/nightingale-browser-console/package.json
Expand Up @@ -26,7 +26,7 @@
"build": "pob-build",
"build:definitions": "tsc -p tsconfig.build.json",
"clean": "rm -Rf docs dist test/node6 coverage",
"lint": "tsc && eslint --ext .ts --quiet src/",
"lint": "eslint --ext .ts --quiet src/",
"watch": "pob-watch"
},
"prettier": {
Expand All @@ -41,13 +41,13 @@
"nightingale-types": "^2.2.1"
},
"devDependencies": {
"@babel/core": "7.4.3",
"@babel/preset-env": "7.4.3",
"@pob/eslint-config-babel": "29.2.0",
"@pob/eslint-config-typescript": "29.2.0",
"@babel/core": "7.4.4",
"@babel/preset-env": "7.4.4",
"@pob/eslint-config-babel": "31.0.0",
"@pob/eslint-config-typescript": "31.1.0",
"babel-preset-modern-browsers": "14.0.0",
"eslint": "5.16.0",
"pob-babel": "23.12.0",
"prettier": "1.16.4"
"pob-babel": "23.16.0",
"prettier": "1.17.0"
}
}
1 change: 1 addition & 0 deletions packages/nightingale-browser-console/tsconfig.build.json
Expand Up @@ -5,6 +5,7 @@
"noEmit": false,
"emitDeclarationOnly": true,
"outDir": "dist",
"tsBuildInfoFile": "dist/tsbuildinfo",
"isolatedModules": false,
"declaration": true,
"declarationMap": true
Expand Down
3 changes: 3 additions & 0 deletions packages/nightingale-console-example/.eslintrc.json
@@ -1,6 +1,9 @@
{
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json"
},
"plugins": ["@typescript-eslint"],
"extends": [
"@pob/eslint-config-babel",
Expand Down
14 changes: 7 additions & 7 deletions packages/nightingale-console-example/package.json
Expand Up @@ -26,7 +26,7 @@
"scripts": {
"build": "pob-build",
"build:definitions": "tsc -p tsconfig.build.json",
"lint": "tsc && eslint --ext .ts --quiet src/",
"lint": "eslint --ext .ts --quiet src/",
"watch": "pob-watch"
},
"prettier": {
Expand All @@ -39,13 +39,13 @@
"nightingale-console": "^5.2.1"
},
"devDependencies": {
"@babel/core": "7.4.3",
"@pob/eslint-config-babel": "29.2.0",
"@pob/eslint-config-babel-node": "29.1.1",
"@pob/eslint-config-typescript": "29.2.0",
"@babel/core": "7.4.4",
"@pob/eslint-config-babel": "31.0.0",
"@pob/eslint-config-babel-node": "31.0.0",
"@pob/eslint-config-typescript": "31.1.0",
"babel-preset-latest-node": "3.1.1",
"eslint": "5.16.0",
"pob-babel": "23.12.0",
"prettier": "1.16.4"
"pob-babel": "23.16.0",
"prettier": "1.17.0"
}
}
1 change: 1 addition & 0 deletions packages/nightingale-console-example/tsconfig.build.json
Expand Up @@ -5,6 +5,7 @@
"noEmit": false,
"emitDeclarationOnly": true,
"outDir": "dist",
"tsBuildInfoFile": "dist/tsbuildinfo",
"isolatedModules": false,
"declaration": true,
"declarationMap": true
Expand Down
3 changes: 3 additions & 0 deletions packages/nightingale-console-output/.eslintrc.json
@@ -1,6 +1,9 @@
{
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json"
},
"plugins": ["@typescript-eslint"],
"extends": ["@pob/eslint-config-babel", "@pob/eslint-config-typescript"]
}
3 changes: 2 additions & 1 deletion packages/nightingale-console-output/.npmignore
Expand Up @@ -4,7 +4,8 @@
/samples
/test
/tsconfig.json
/tsconfig.build.*
/tsconfig.build.json
/dist/tsbuildinfo
.babelrc
.codeclimate.yml
.yo-rc.json
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.

0 comments on commit a809562

Please sign in to comment.