Skip to content

Commit

Permalink
chore: upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ark120202 committed Apr 18, 2019
1 parent fbbffed commit 1b33b5d
Show file tree
Hide file tree
Showing 5 changed files with 327 additions and 236 deletions.
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/lib
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
language: node_js
cache: yarn
node_js:
- "8"
- "10"
- '8'
- '10'
- node

script:
- yarn build
- yarn lint
- yarn build
20 changes: 11 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,16 @@
"license": "MIT",
"author": "ark120202",
"files": [
"lib"
"lib/**/*.{js,ts}"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"lint": "tslint -p .",
"lint": "run-s lint:prettier lint:tslint",
"lint:prettier": "prettier --check **/*.{ts,md,yml,json}",
"lint:tslint": "tslint -p .",
"prepublishOnly": "yarn build"
},
"prettier": {
Expand All @@ -32,18 +34,18 @@
"dependencies": {
"execa": "^1.0.0",
"fs-extra": "^7.0.1",
"p-filter": "^2.0.0",
"p-filter": "^2.1.0",
"tslib": "^1.9.3",
"vdf-extra": "^2.2.2"
},
"devDependencies": {
"@ark120202/tslint-config": "^3.1.2",
"@ark120202/typescript-config": "^1.5.0",
"@ark120202/tslint-config": "^4.0.1",
"@ark120202/typescript-config": "^2.0.0",
"@types/execa": "^0.9.0",
"@types/fs-extra": "^5.0.5",
"prettier": "^1.16.4",
"tslint": "^5.14.0",
"typescript": "^3.3.3333",
"typescript-tslint-plugin": "^0.3.1"
"npm-run-all": "^4.1.5",
"prettier": "^1.17.0",
"tslint": "^5.16.0",
"typescript": "^3.4.3"
}
}
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "@ark120202/typescript-config/node10.json",
"extends": "@ark120202/typescript-config/node/10.json",
"compilerOptions": {
"rootDir": "./src",
"outDir": "./lib"
Expand Down
Loading

0 comments on commit 1b33b5d

Please sign in to comment.