Skip to content

Commit

Permalink
Fix conflicting Jest dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
rossyman committed Jul 20, 2021
1 parent 936b7fd commit 9ff9f01
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": true,
"name": "@rossyman/svelte-add-jest",
"version": "1.1.0",
"version": "1.1.1",
"description": "SvelteKit adder for Jest unit testing",
"license": "MIT",
"keywords": [
Expand Down
6 changes: 3 additions & 3 deletions preset.ts
Original file line number Diff line number Diff line change
Expand Up @@ -164,12 +164,12 @@ class SvelteJestAdder extends Adder {
protected readonly REQUIRED_DEPENDENCIES: Dependencies = {
'@babel/core': {version: '^7.14.0', type: 'DEV'},
'@babel/preset-env': {version: '^7.14.0', type: 'DEV'},
'jest': {version: '^27.0.0', type: 'DEV'},
'babel-jest': {version: '^27.0.0', type: 'DEV'},
'jest': {version: '^26.0.0', type: 'DEV'},
'babel-jest': {version: '^26.0.0', type: 'DEV'},
'svelte-jester': {version: '^1.7.0', type: 'DEV'},
'@testing-library/svelte': {version: '^3.0.0', type: 'DEV'},
'@testing-library/jest-dom': {version: '^5.14.0', type: 'DEV', reliesOn: 'jest-dom'},
'ts-jest': {version: '^27.0.0', type: 'DEV', reliesOn: 'ts'},
'ts-jest': {version: '^26.0.0', type: 'DEV', reliesOn: 'ts'},
'@types/jest': {version: '^26.0.0', type: 'DEV', reliesOn: 'ts'},
'@types/testing-library__jest-dom': {version: '^5.14.0', type: 'DEV', reliesOn: 'ts'}
};
Expand Down

0 comments on commit 9ff9f01

Please sign in to comment.