-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b33e4ee
commit 9b7cf60
Showing
25 changed files
with
1,242 additions
and
1,788 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1 @@ | ||
#!/usr/bin/env sh | ||
. "$(dirname -- "$0")/_/husky.sh" | ||
|
||
yarn commitlint --edit "$1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
yarn g:lint-staged-files --debug |
This file was deleted.
Oops, something went wrong.
626 changes: 313 additions & 313 deletions
626
.yarn/releases/yarn-4.2.2.cjs → .yarn/releases/yarn-4.3.1.cjs
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,6 +29,7 @@ | |
"?build-release": "When https://github.com/atlassian/changesets/issues/432 has a solution we can remove this trick", | ||
"g:build-release": "yarn workspaces foreach --all -tv run build-release", | ||
"g:build-local": "yarn workspaces foreach --all -tv run build", | ||
"g:test": "yarn workspaces foreach --all -ptv run test", | ||
"g:test-unit": "yarn workspaces foreach --all -ptv run test-unit", | ||
"g:test-e2e": "yarn workspaces foreach --all -tv run test-e2e", | ||
"g:test-coverage": "yarn workspaces foreach --all -tv run test-coverage", | ||
|
@@ -46,7 +47,7 @@ | |
"deps:update": "yarn dlx npm-check-updates@latest --configFileName .ncurc.json -u --deep --mergeConfig", | ||
"check:install": "yarn dlx @yarnpkg/[email protected] .", | ||
"install:playwright": "npx playwright install", | ||
"prepare": "yarn husky" | ||
"prepare": "husky" | ||
}, | ||
"config": { | ||
"commitizen": { | ||
|
@@ -58,23 +59,23 @@ | |
}, | ||
"devDependencies": { | ||
"@changesets/changelog-github": "0.5.0", | ||
"@changesets/cli": "2.27.5", | ||
"@changesets/cli": "2.27.7", | ||
"@commitlint/cli": "19.3.0", | ||
"@commitlint/config-conventional": "19.2.2", | ||
"@hyperse/eslint-config-hyperse": "^1.0.7", | ||
"@hyperse/eslint-config-hyperse": "^1.0.10", | ||
"commitizen": "4.3.0", | ||
"cz-conventional-changelog": "3.3.0", | ||
"eslint": "^9.4.0", | ||
"husky": "9.0.11", | ||
"lint-staged": "15.2.5", | ||
"eslint": "^9.7.0", | ||
"husky": "9.1.1", | ||
"lint-staged": "15.2.7", | ||
"npm-run-all": "4.1.5", | ||
"rimraf": "5.0.7", | ||
"typescript": "5.4.5" | ||
"rimraf": "6.0.1", | ||
"typescript": "5.5.4" | ||
}, | ||
"engines": { | ||
"node": ">=18.0.0", | ||
"npm": "please-use-yarn", | ||
"yarn": ">=1.22.0" | ||
}, | ||
"packageManager": "yarn@4.2.2" | ||
"packageManager": "yarn@4.3.1" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,11 @@ | ||
import tsConfigPaths from 'vite-tsconfig-paths'; | ||
import { defineConfig } from 'vitest/config'; | ||
import tsconfigPaths from 'vite-tsconfig-paths'; | ||
import { configDefaults, defineConfig } from 'vitest/config'; | ||
|
||
export default defineConfig({ | ||
plugins: [tsConfigPaths()], | ||
cacheDir: '../../.cache/vitest/next-auth', | ||
plugins: [tsconfigPaths()], | ||
test: { | ||
// Makebe suite for local debug | ||
testTimeout: 1000 * 30, | ||
globals: true, | ||
environment: 'node', | ||
passWithNoTests: true, | ||
coverage: { | ||
provider: 'istanbul', | ||
reporter: ['json-summary', 'html'], | ||
extension: ['js', 'jsx', 'ts', 'tsx'], | ||
}, | ||
exclude: [...configDefaults.exclude], | ||
include: ['**/?(*.){test,spec}.?(c|m)[jt]s?(x)'], | ||
exclude: [ | ||
'**/node_modules/**', | ||
'dist/**', | ||
'**/coverage/**', | ||
'**/.{idea,git,cache,output,temp}/**', | ||
], | ||
}, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,11 @@ | ||
import tsConfigPaths from 'vite-tsconfig-paths'; | ||
import { defineConfig } from 'vitest/config'; | ||
import tsconfigPaths from 'vite-tsconfig-paths'; | ||
import { configDefaults, defineConfig } from 'vitest/config'; | ||
|
||
export default defineConfig({ | ||
plugins: [tsConfigPaths()], | ||
cacheDir: '../../.cache/vitest/next-core', | ||
plugins: [tsconfigPaths()], | ||
test: { | ||
// Makebe suite for local debug | ||
testTimeout: 1000 * 30, | ||
globals: true, | ||
environment: 'node', | ||
passWithNoTests: true, | ||
coverage: { | ||
provider: 'istanbul', | ||
reporter: ['json-summary', 'html'], | ||
extension: ['js', 'jsx', 'ts', 'tsx'], | ||
}, | ||
exclude: [...configDefaults.exclude], | ||
include: ['**/?(*.){test,spec}.?(c|m)[jt]s?(x)'], | ||
exclude: [ | ||
'**/node_modules/**', | ||
'dist/**', | ||
'**/coverage/**', | ||
'**/.{idea,git,cache,output,temp}/**', | ||
], | ||
}, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.