bullmq 1.51.1 → 1.52.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bullmq",
3
- "version": "1.51.1",
3
+ "version": "1.52.1",
4
4
  "description": "Queue for messages and jobs based on Redis",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -18,7 +18,8 @@
18
18
  "dist"
19
19
  ],
20
20
  "scripts": {
21
- "build": "tsc && yarn copy:lua && yarn copy:includes:lua",
21
+ "build": "npm-run-all tsc copy:lua copy:includes:lua clean:temp:files",
22
+ "clean:temp:files": "rimraf dist/bullmq.d.ts dist/tsdoc-metadata.json",
22
23
  "copy:lua": "copyfiles -f ./src/commands/*.lua ./dist/commands",
23
24
  "copy:includes:lua": "copyfiles -f ./src/commands/includes/*.lua ./dist/commands/includes",
24
25
  "coverage": "nyc --reporter=text npm run test",
@@ -31,14 +32,15 @@
31
32
  "eslint:fix": "./node_modules/.bin/eslint . --ignore-path ./.eslintignore --fix",
32
33
  "lint": "./node_modules/.bin/eslint . --ignore-path ./.eslintignore",
33
34
  "lint:staged": "./node_modules/.bin/lint-staged",
34
- "precommit": "yarn pretty:quick && yarn lint:staged",
35
+ "precommit": "npm-run-all pretty:quick lint:staged",
35
36
  "prepare": "yarn build",
36
37
  "prettier": "prettier --config package.json src/**/*.ts",
37
38
  "pretty:quick": "./node_modules/.bin/pretty-quick --ignore-path ./.eslintignore --staged",
38
39
  "semantic-release": "semantic-release",
39
40
  "semantic-release-prepare": "ts-node tools/semantic-release-prepare",
40
41
  "test": "tsc && ts-mocha --config ./.mocharc.js",
41
- "test:watch": "ts-mocha --paths 'src/**/test_*.ts' -w --watch-extensions ts"
42
+ "test:watch": "ts-mocha --paths 'src/**/test_*.ts' -w --watch-extensions ts",
43
+ "tsc": "tsc"
42
44
  },
43
45
  "dependencies": {
44
46
  "cron-parser": "^2.18.0",
@@ -60,7 +62,7 @@
60
62
  "@semantic-release/commit-analyzer": "^8.0.1",
61
63
  "@semantic-release/exec": "^5.0.0",
62
64
  "@semantic-release/git": "^9.0.1",
63
- "@semantic-release/github": "^7.2.0",
65
+ "@semantic-release/github": "^8.0.2",
64
66
  "@semantic-release/npm": "^7.0.9",
65
67
  "@semantic-release/release-notes-generator": "^9.0.3",
66
68
  "@types/chai": "^4.2.22",
@@ -91,9 +93,11 @@
91
93
  "lint-staged": "10.5.4",
92
94
  "mocha": "^6.2.3",
93
95
  "mocha-lcov-reporter": "^1.3.0",
96
+ "npm-run-all": "^4.1.5",
94
97
  "nyc": "^14.1.1",
95
98
  "prettier": "^2.4.1",
96
99
  "pretty-quick": "^3.1.1",
100
+ "rimraf": "^3.0.2",
97
101
  "semantic-release": "^17.4.7",
98
102
  "sinon": "^7.5.0",
99
103
  "test-console": "^2.0.0",