@lokalise/background-jobs-common
Advanced tools
Comparing version 3.5.0 to 4.0.0
114
package.json
{ | ||
"name": "@lokalise/background-jobs-common", | ||
"version": "3.5.0", | ||
"files": [ | ||
"dist", | ||
"LICENSE.md", | ||
"README.md" | ||
], | ||
"author": { | ||
"name": "Lokalise", | ||
"url": "https://lokalise.com/" | ||
}, | ||
"homepage": "https://github.com/lokalise/shared-ts-libs", | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/lokalise/shared-ts-libs.git" | ||
}, | ||
"private": false, | ||
"license": "Apache-2.0", | ||
"type": "commonjs", | ||
"main": "./dist/index.js", | ||
"types": "./dist/index.d.ts", | ||
"scripts": { | ||
"build": "rimraf dist && tsc", | ||
"clean": "rimraf dist .eslintcache", | ||
"lint": "eslint --cache --max-warnings=0 . && prettier --check --log-level warn src \"**/*.{json,md,ts,tsx}\" && tsc --noEmit", | ||
"lint:fix": "prettier --write src \"**/*.{json,md,ts,tsx}\" --log-level=warn && eslint . --fix", | ||
"docker:start:ci": "docker compose up -d --quiet-pull redis", | ||
"test": "vitest run", | ||
"pretest:ci": "npm run docker:start:ci", | ||
"test:ci": "npm run test -- --coverage", | ||
"test:ci:teardown": "docker compose down", | ||
"prepublishOnly": "npm run build", | ||
"package-version": "echo $npm_package_version" | ||
}, | ||
"dependencies": { | ||
"@lokalise/id-utils": "^2.1.0", | ||
"@lokalise/node-core": "^10.0.1", | ||
"pino": "^9.2.0", | ||
"ts-deepmerge": "^7.0.0" | ||
}, | ||
"peerDependencies": { | ||
"bullmq": "^5.7.15" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "^20.14.8", | ||
"@lokalise/eslint-config": "latest", | ||
"@lokalise/fastify-extras": "^21.2.2", | ||
"@lokalise/prettier-config": "latest", | ||
"@lokalise/package-vite-config": "latest", | ||
"@vitest/coverage-v8": "^1.6.0", | ||
"bullmq": "^5.7.15", | ||
"ioredis": "^5.4.1", | ||
"prettier": "3.3.2", | ||
"rimraf": "^5.0.7", | ||
"typescript": "5.5.2", | ||
"vitest": "^1.6.0" | ||
}, | ||
"prettier": "@lokalise/prettier-config" | ||
"name": "@lokalise/background-jobs-common", | ||
"version": "4.0.0", | ||
"files": [ | ||
"dist", | ||
"LICENSE.md", | ||
"README.md" | ||
], | ||
"author": { | ||
"name": "Lokalise", | ||
"url": "https://lokalise.com/" | ||
}, | ||
"homepage": "https://github.com/lokalise/shared-ts-libs", | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/lokalise/shared-ts-libs.git" | ||
}, | ||
"private": false, | ||
"license": "Apache-2.0", | ||
"type": "commonjs", | ||
"main": "./dist/index.js", | ||
"types": "./dist/index.d.ts", | ||
"scripts": { | ||
"build": "rimraf dist && tsc", | ||
"clean": "rimraf dist", | ||
"lint": "biome check . && tsc --project tsconfig.lint.json --noEmit", | ||
"lint:fix": "biome check --write", | ||
"docker:start:ci": "docker compose up -d --quiet-pull redis", | ||
"test": "vitest run", | ||
"pretest:ci": "npm run docker:start:ci", | ||
"test:ci": "npm run test -- --coverage", | ||
"test:ci:teardown": "docker compose down", | ||
"prepublishOnly": "npm run build", | ||
"package-version": "echo $npm_package_version" | ||
}, | ||
"dependencies": { | ||
"@lokalise/id-utils": "^2.1.0", | ||
"@lokalise/node-core": "^11.1.0", | ||
"pino": "^9.2.0", | ||
"ts-deepmerge": "^7.0.0" | ||
}, | ||
"peerDependencies": { | ||
"bullmq": "^5.7.15" | ||
}, | ||
"devDependencies": { | ||
"@biomejs/biome": "^1.8.3", | ||
"@lokalise/biome-config": "^1.2.2", | ||
"@types/node": "^20.14.8", | ||
"@lokalise/fastify-extras": "^21.2.2", | ||
"@lokalise/package-vite-config": "latest", | ||
"@vitest/coverage-v8": "^1.6.0", | ||
"bullmq": "^5.7.15", | ||
"ioredis": "^5.4.1", | ||
"rimraf": "^6.0.1", | ||
"typescript": "5.5.3", | ||
"vitest": "^1.6.0" | ||
} | ||
} |
@@ -5,3 +5,3 @@ # Common background jobs library | ||
- AbstractBackgroundJobProcessor: a base class for running jobs, it provides a instrumentation and logger integration plus | ||
- AbstractBackgroundJobProcessor: a base class for running jobs, it provides an instrumentation and logger integration plus | ||
basic API for enqueuing jobs. | ||
@@ -17,2 +17,7 @@ | ||
Start Docker containers: | ||
```shell | ||
docker compose up -d | ||
``` | ||
Run all tests: | ||
@@ -19,0 +24,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 4 instances in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
42853
11
31
866
76
4
1
+ Added@lokalise/node-core@11.2.0(transitive)
- Removed@lokalise/node-core@10.0.1(transitive)
Updated@lokalise/node-core@^11.1.0