test: fix ci problem
This commit is contained in:
parent
07f64a87ff
commit
d13e33e9a1
@ -18,7 +18,7 @@
|
|||||||
"build:tracker": "ts-node scripts/build-tracker.ts",
|
"build:tracker": "ts-node scripts/build-tracker.ts",
|
||||||
"build:geo": "ts-node scripts/build-geo.ts",
|
"build:geo": "ts-node scripts/build-geo.ts",
|
||||||
"build:openapi": "ts-node scripts/build-openapi-schema.ts",
|
"build:openapi": "ts-node scripts/build-openapi-schema.ts",
|
||||||
"check:type": "tsc --noEmit --skipLibCheck --module esnext",
|
"check:type": "pnpm -r check:type",
|
||||||
"release": "release-it",
|
"release": "release-it",
|
||||||
"release:patch": "release-it -i patch"
|
"release:patch": "release-it -i patch"
|
||||||
},
|
},
|
||||||
|
@ -8,6 +8,7 @@
|
|||||||
"dev": "vite --port 10000",
|
"dev": "vite --port 10000",
|
||||||
"build": "vite build",
|
"build": "vite build",
|
||||||
"ui:add": "shadcn-ui add",
|
"ui:add": "shadcn-ui add",
|
||||||
|
"check:type": "tsc --noEmit --skipLibCheck --module esnext",
|
||||||
"translation:extract": "i18next-toolkit extract",
|
"translation:extract": "i18next-toolkit extract",
|
||||||
"translation:scan": "i18next-toolkit scan",
|
"translation:scan": "i18next-toolkit scan",
|
||||||
"translation:translate": "i18next-toolkit translate",
|
"translation:translate": "i18next-toolkit translate",
|
||||||
|
@ -123,8 +123,7 @@ function PageComponent() {
|
|||||||
</Form.Item>
|
</Form.Item>
|
||||||
<Form.Item className="text-right">
|
<Form.Item className="text-right">
|
||||||
<Button
|
<Button
|
||||||
type="primary"
|
type="submit"
|
||||||
htmlType="submit"
|
|
||||||
loading={changePasswordMutation.isLoading}
|
loading={changePasswordMutation.isLoading}
|
||||||
>
|
>
|
||||||
{t('Submit')}
|
{t('Submit')}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"extends": "../../tsconfig.json",
|
"extends": "../../tsconfig.base.json",
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"module": "ESNext",
|
"module": "ESNext",
|
||||||
"jsx": "react-jsx",
|
"jsx": "react-jsx",
|
||||||
|
@ -8,6 +8,7 @@
|
|||||||
"dev": "nodemon",
|
"dev": "nodemon",
|
||||||
"build": "tsc -p tsconfig.server.json",
|
"build": "tsc -p tsconfig.server.json",
|
||||||
"postinstall": "pnpm db:generate",
|
"postinstall": "pnpm db:generate",
|
||||||
|
"check:type": "tsc --noEmit --skipLibCheck --module esnext",
|
||||||
"db:generate": "prisma generate",
|
"db:generate": "prisma generate",
|
||||||
"db:migrate:dev": "prisma migrate dev",
|
"db:migrate:dev": "prisma migrate dev",
|
||||||
"db:migrate:apply": "prisma migrate deploy",
|
"db:migrate:apply": "prisma migrate deploy",
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{
|
{
|
||||||
"extends": "../../tsconfig.json",
|
"extends": "../../tsconfig.base.json",
|
||||||
"include": ["./**/*"]
|
"include": ["./**/*"]
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"extends": "../../tsconfig.json",
|
"extends": "../../tsconfig.base.json",
|
||||||
"include": ["./**/*.ts", "../types/**/*.ts"],
|
"include": ["./**/*.ts", "../types/**/*.ts"],
|
||||||
"exclude": ["node_modules/**/*", "dist"],
|
"exclude": ["node_modules/**/*", "dist"],
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
|
@ -9,6 +9,7 @@
|
|||||||
"require": "./dist/cjs/src/shared/src/index.js"
|
"require": "./dist/cjs/src/shared/src/index.js"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
"check:type": "tsc --noEmit --skipLibCheck --module esnext",
|
||||||
"build": "concurrently npm:build:cjs npm:build:esm",
|
"build": "concurrently npm:build:cjs npm:build:esm",
|
||||||
"build:cjs": "tsc --module commonjs --outDir ./dist/cjs",
|
"build:cjs": "tsc --module commonjs --outDir ./dist/cjs",
|
||||||
"build:esm": "tsc --module esnext --outDir ./dist/esm",
|
"build:esm": "tsc --module esnext --outDir ./dist/esm",
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"extends": "../../tsconfig.json",
|
"extends": "../../tsconfig.base.json",
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"outDir": "./dist",
|
"outDir": "./dist",
|
||||||
"declaration": true,
|
"declaration": true,
|
||||||
|
Loading…
Reference in New Issue
Block a user