Skip to content

Commit

Permalink
chore: update deps infrastructure
Browse files Browse the repository at this point in the history
  • Loading branch information
d3m1d0v committed Sep 25, 2024
1 parent 74237f8 commit 0ae1b71
Show file tree
Hide file tree
Showing 12 changed files with 11,270 additions and 8,205 deletions.
10,705 changes: 2,519 additions & 8,186 deletions package-lock.json

Large diffs are not rendered by default.

10 changes: 2 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"build:js": "./esbuild/build.mjs",
"build:declarations": "tsc --emitDeclarationOnly --outDir ./build -p tsconfig.publish.json",
"prepublishOnly": "npm run lint && npm run test && npm run build",
"test": "jest",
"test": "cd tests && npm ci && npm test",
"lint": "lint update && lint",
"lint:fix": "lint update && lint fix",
"pre-commit": "lint update && lint-staged",
Expand All @@ -45,22 +45,16 @@
},
"devDependencies": {
"@diplodoc/lint": "^1.2.0",
"@diplodoc/transform": "^4.31.3",
"@diplodoc/tsconfig": "^1.0.2",
"@types/github-slugger": "^1.3.0",
"@types/jest": "^29.5.2",
"@types/markdown-it": "^13.0.9",
"@types/node": "*",
"@types/react": "^18.2.14",
"esbuild": "^0.23.1",
"esbuild-sass-plugin": "^3.3.1",
"github-slugger": "^1.5.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.7.0",
"jest-serializer-html": "^7.1.0",
"markdown-it": "^13.0.2",
"npm-run-all": "^4.1.5",
"ts-dedent": "^2.2.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.2"
}
}
11 changes: 5 additions & 6 deletions jest.config.js → tests/jest.config.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
/** @type {import('ts-jest').JestConfigWithTsJest} */
/** @type {import('jest').Config} */
module.exports = {
preset: 'ts-jest',
transform: {
'^.+\\.(j|t)s?$': ['ts-jest', {tsconfig: '<rootDir>/tsconfig.json'}],
},
transformIgnorePatterns: [],
testEnvironment: 'jsdom',
transformIgnorePatterns: [],
snapshotSerializers: ['jest-serializer-html'],
transform: {
'^.+\\.(j|t)s?$': ['esbuild-jest', {tsconfig: './tsconfig.json'}],
},
};
Loading

0 comments on commit 0ae1b71

Please sign in to comment.