Skip to content

Commit 3800503

Browse files
committed
Update
1 parent 889b22a commit 3800503

File tree

4 files changed

+46
-120
lines changed

4 files changed

+46
-120
lines changed

Diff for: jest.config.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module.exports = {
22
globals: {
3-
"<rootDir>/node_modules/ts-jest": {
3+
"ts-jest": {
44
tsconfig: "tsconfig.json",
55
diagnostics: {
66
pathRegex: /\.(spec|test)\.ts$/,
@@ -9,9 +9,8 @@ module.exports = {
99
},
1010
moduleFileExtensions: ["ts", "js", "json"],
1111
transform: {
12-
"^.+\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest",
12+
"^.+\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js",
1313
},
14-
rootDir: ".",
1514
testMatch: ["**/test/**/*.test.(ts|js)"],
1615
testEnvironment: "node",
1716
};

Diff for: package-lock.json

+36-108
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@dominicvonk/llrp-ts",
3-
"version": "1.1.7",
3+
"version": "1.1.8",
44
"description": "UHF Tag reader for connecting with RFID reader through LLRP. (LLRP UHF RFID Driver)",
55
"main": "./dist/index.js",
66
"types": "./dist/index.d.ts",
@@ -29,24 +29,24 @@
2929
},
3030
"dependencies": {
3131
"jest": "^26.6.3",
32-
"lodash": "^4.17.11",
32+
"lodash": "^4.17.20",
3333
"node-int64": "0.4.0"
3434
},
3535
"devDependencies": {
3636
"@types/jest": "^26.0.19",
37-
"@types/node": "^14.14.12",
37+
"@types/node": "^14.14.16",
3838
"@types/node-int64": "^0.4.29",
3939
"copyfiles": "^2.4.1",
40-
"eslint": "^7.15.0",
41-
"eslint-config-prettier": "^7.0.0",
40+
"eslint": "^7.16.0",
41+
"eslint-config-prettier": "^7.1.0",
4242
"eslint-plugin-import": "^2.22.1",
4343
"eslint-plugin-jest": "^24.1.3",
44-
"eslint-plugin-prettier": "^3.2.0",
44+
"eslint-plugin-prettier": "^3.3.0",
4545
"nodemon": "^2.0.6",
4646
"prettier": "^2.2.1",
4747
"ts-jest": "^26.4.4",
4848
"ts-node": "^9.1.1",
49-
"typescript": "^4.1.2"
49+
"typescript": "^4.1.3"
5050
},
5151
"engines": {
5252
"node": ">=10.15.1"

Diff for: tsconfig.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@
1414
"isolatedModules": true,
1515
"declaration": true,
1616
"removeComments": true,
17-
"outDir": "./dist",
18-
"rootDir": "."
17+
"outDir": "./dist"
1918
},
2019
"include": [
2120
"src/**/*"

0 commit comments

Comments
 (0)