Skip to content

Commit

Permalink
Merge pull request #958 from devoxa/update-dvx
Browse files Browse the repository at this point in the history
Update to dvx rules
  • Loading branch information
kodiakhq[bot] authored Dec 21, 2024
2 parents a6594d0 + 7b16dbf commit 9417c8a
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ on:
- master
pull_request:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
test-and-build:
name: 'Test & build'
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<!-- Description -->
<h4 align="center">
A utility library with clarity and efficiency at the core. 0 dependencies.
A utility library with clarity and efficiency at the core and no dependencies
</h4>

<!-- Badges -->
Expand Down
4 changes: 3 additions & 1 deletion jest.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
module.exports = {
transform: { '^.+\\.tsx?$': '@swc/jest' },
transform: {
'^.+\\.tsx?$': ['@swc/jest', { jsc: { transform: { react: { runtime: 'automatic' } } } }],
},
coverageProvider: 'v8',
testEnvironment: 'jsdom',
modulePathIgnorePatterns: ['<rootDir>/dist'],
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@devoxa/flocky",
"description": "A utility library with clarity and efficiency at the core. 0 dependencies.",
"description": "A utility library with clarity and efficiency at the core and no dependencies",
"version": "3.0.0",
"main": "dist/index.js",
"module": "dist/esm/index.js",
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// Output Options
"target": "es2022",
"module": "esnext",
"jsx": "react",
"jsx": "react-jsx",
"noEmitOnError": true,
"newLine": "lf",
"outDir": "dist/",
Expand Down

0 comments on commit 9417c8a

Please sign in to comment.