Skip to content

Commit

Permalink
chore: Update dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
darkobits committed Dec 9, 2020
1 parent 5a954da commit 26fe1ef
Show file tree
Hide file tree
Showing 7 changed files with 550 additions and 977 deletions.
4 changes: 1 addition & 3 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
module.exports = {
extends: [
require.resolve('@darkobits/ts/eslint')
]
extends: require('@darkobits/ts').eslint
};
2 changes: 1 addition & 1 deletion babel.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module.exports = {
extends: require.resolve('@darkobits/ts/babel')
extends: require('@darkobits/ts').babel
};
2 changes: 1 addition & 1 deletion jest.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module.exports = require('@darkobits/ts/jest')({
module.exports = require('@darkobits/ts').jest({
coverageThreshold: {
global: {
branches: 90,
Expand Down
1,502 changes: 540 additions & 962 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package-scripts.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
module.exports = require('@darkobits/ts/package-scripts')();
module.exports = require('@darkobits/ts').nps();
8 changes: 3 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@
},
"dependencies": {
"@darkobits/chex": "^0.1.8",
"@darkobits/log": "^2.0.0-beta.14",
"@darkobits/log": "^2.0.0-beta.15",
"@darkobits/node-versions": "^1.0.2",
"@darkobits/saffron": "^0.1.12",
"@darkobits/saffron": "^0.1.14",
"bytes": "^3.1.0",
"ejs": "^3.1.5",
"find-up": "^5.0.0",
Expand All @@ -48,12 +48,10 @@
"tempy": "^1.0.0"
},
"devDependencies": {
"@darkobits/ts": "^0.1.0-beta.11",
"@darkobits/ts": "^0.1.5",
"@types/bytes": "^3.1.0",
"@types/ejs": "^3.0.5",
"@types/fs-extra": "^9.0.4",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.9",
"@types/node-emoji": "^1.8.1",
"@types/tar": "^4.0.4"
}
Expand Down
7 changes: 3 additions & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
{
"extends": "@darkobits/ts/config/tsconfig.json",
"extends": "@darkobits/ts/tsconfig.json",
"compilerOptions": {
"baseUrl": ".",
"outDir": "dist",
"paths": {"*": ["*", "src/*"]}
"baseUrl": "src",
"outDir": "dist"
}
}

0 comments on commit 26fe1ef

Please sign in to comment.