Skip to content

Commit

Permalink
Merge pull request #369 from neoxia/chore/upgrade-dependencies
Browse files Browse the repository at this point in the history
Upgrade dev dependencies
  • Loading branch information
julien-capellari committed Apr 27, 2023
2 parents 07c2e5b + 0fa9c89 commit b73d372
Show file tree
Hide file tree
Showing 15 changed files with 5,841 additions and 4,628 deletions.
23 changes: 8 additions & 15 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,34 +27,27 @@ coverage
# nyc test coverage
.nyc_output

# Dependency directories
node_modules/
# Yarn
.yarn/*
!.yarn/patches
!.yarn/releases
!.yarn/plugins
!.yarn/sdks
!.yarn/versions
.pnp.*

# TypeScript cache
*.tsbuildinfo

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# Stores VSCode versions used for testing VSCode extensions
.vscode-test

# yarn v2
.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*

# Build output
/dist/*
!/dist/bundle.js*
25 changes: 25 additions & 0 deletions .idea/jsonSchemas.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions .idea/markdown.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

873 changes: 873 additions & 0 deletions .yarn/releases/yarn-3.5.0.cjs

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
yarnPath: .yarn/releases/yarn-3.5.0.cjs
3 changes: 2 additions & 1 deletion dist/bundle.js

Large diffs are not rendered by default.

55 changes: 0 additions & 55 deletions dist/bundle.js.LICENSE.txt

This file was deleted.

1 change: 1 addition & 0 deletions dist/bundle.js.map

Large diffs are not rendered by default.

18 changes: 0 additions & 18 deletions jest.config.json

This file was deleted.

15 changes: 15 additions & 0 deletions jest.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import type { Config } from 'jest';

const config: Config = {
roots: [
'<rootDir>/tests'
],
moduleNameMapper: {
'^@/(.*)$': '<rootDir>/$1',
},
transform: {
'^.+\\.tsx?$': 'ts-jest'
}
};

export default config;
17 changes: 9 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,16 @@
"simple-git": "^3.17.0"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/jest": "^29.5.1",
"@types/minimatch": "^5.1.1",
"@types/node": "^16.18.23",
"jest": "^26.6.3",
"ts-jest": "^26.5.6",
"@types/node": "^16.18.25",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^4.3.5",
"webpack": "^5.76.0",
"webpack-cli": "^5.0.1"
}
"typescript": "^5.0.4",
"webpack": "^5.81.0",
"webpack-cli": "^5.0.2"
},
"packageManager": "yarn@3.5.0"
}
Loading

0 comments on commit b73d372

Please sign in to comment.