Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Will Nelson committed Oct 4, 2020
1 parent bafe889 commit 8e37db6
Show file tree
Hide file tree
Showing 4 changed files with 173 additions and 2,490 deletions.
2 changes: 0 additions & 2 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,4 @@ node_modules/
test/
src/
.env
tsconfig.json
*.log
gulpfile.js
12 changes: 4 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
"repository": "https://github.com/appellation/lavaqueue.git",
"license": "MIT",
"scripts": {
"prepare": "gulp",
"start:dev": "gulp && env-cmd .env node --trace-warnings test/index.js"
"prepare": "rimraf dist typings && tsc",
"start:dev": "yarn prepare && env-cmd .env node --trace-warnings test/index.js"
},
"dependencies": {
"ioredis": "^4.0.0",
Expand All @@ -21,11 +21,7 @@
"@types/node": "^9.4.6",
"@types/ws": "^4.0.1",
"env-cmd": "^8.0.2",
"fs-nextra": "^0.3.7",
"gulp": "^4.0.0",
"gulp-sourcemaps": "^2.6.4",
"gulp-typescript": "^4.0.1",
"merge2": "^1.2.2",
"typescript": "^3.1.1"
"rimraf": "^3.0.2",
"typescript": "^4.0.3"
}
}
4 changes: 3 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@
],
"declaration": true,
"sourceMap": true,
"removeComments": false
"removeComments": false,
"outDir": "dist",
"declarationDir": "typings"
},
"include": [
"./src/"
Expand Down
Loading

0 comments on commit 8e37db6

Please sign in to comment.