feat: updates
This commit is contained in:
@@ -24,12 +24,18 @@
|
|||||||
{
|
{
|
||||||
"files": ["*.ts", "*.tsx"],
|
"files": ["*.ts", "*.tsx"],
|
||||||
"extends": ["plugin:@nx/typescript"],
|
"extends": ["plugin:@nx/typescript"],
|
||||||
"rules": {}
|
"rules": {
|
||||||
|
"@typescript-eslint/no-extra-semi": "error",
|
||||||
|
"no-extra-semi": "off"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"files": ["*.js", "*.jsx"],
|
"files": ["*.js", "*.jsx"],
|
||||||
"extends": ["plugin:@nx/javascript"],
|
"extends": ["plugin:@nx/javascript"],
|
||||||
"rules": {}
|
"rules": {
|
||||||
|
"@typescript-eslint/no-extra-semi": "error",
|
||||||
|
"no-extra-semi": "off"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"files": ["*.spec.ts", "*.spec.tsx", "*.spec.js", "*.spec.jsx"],
|
"files": ["*.spec.ts", "*.spec.tsx", "*.spec.js", "*.spec.jsx"],
|
||||||
|
|||||||
1
.gitignore
vendored
1
.gitignore
vendored
@@ -39,3 +39,4 @@ testem.log
|
|||||||
Thumbs.db
|
Thumbs.db
|
||||||
|
|
||||||
.nx/cache
|
.nx/cache
|
||||||
|
.nx/workspace-data
|
||||||
@@ -2,3 +2,4 @@
|
|||||||
/dist
|
/dist
|
||||||
/coverage
|
/coverage
|
||||||
/.nx/cache
|
/.nx/cache
|
||||||
|
/.nx/workspace-data
|
||||||
@@ -1,35 +1,24 @@
|
|||||||
|
/// <reference types="vitest" />
|
||||||
|
import { nxViteTsPaths } from '@nx/vite/plugins/nx-tsconfig-paths.plugin';
|
||||||
|
import { defineConfig } from 'vite';
|
||||||
|
|
||||||
/// <reference types="vitest" />
|
export default defineConfig({
|
||||||
import { defineConfig } from 'vite';
|
cacheDir: '../../../node_modules/.vite/_internal-controllers',
|
||||||
|
|
||||||
import { nxViteTsPaths } from '@nx/vite/plugins/nx-tsconfig-paths.plugin';
|
plugins: [nxViteTsPaths()],
|
||||||
|
|
||||||
|
// Uncomment this if you are using workers.
|
||||||
|
// worker: {
|
||||||
|
// plugins: [ nxViteTsPaths() ],
|
||||||
|
// },
|
||||||
|
|
||||||
export default defineConfig({
|
test: {
|
||||||
cacheDir: '../../../node_modules/.vite/_internal-controllers',
|
reporters: ['default'],
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
plugins: [
|
|
||||||
|
|
||||||
|
|
||||||
nxViteTsPaths(),
|
|
||||||
],
|
|
||||||
|
|
||||||
|
|
||||||
// Uncomment this if you are using workers.
|
|
||||||
// worker: {
|
|
||||||
// plugins: [ nxViteTsPaths() ],
|
|
||||||
// },
|
|
||||||
|
|
||||||
|
|
||||||
test: {
|
|
||||||
globals: true,
|
globals: true,
|
||||||
cache: {
|
cache: {
|
||||||
dir: '../../../node_modules/.vitest'
|
dir: '../../../node_modules/.vitest',
|
||||||
},
|
},
|
||||||
environment: 'node',
|
environment: 'node',
|
||||||
include: ['src/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}'],
|
include: ['src/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}'],
|
||||||
|
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -1,35 +1,24 @@
|
|||||||
|
/// <reference types="vitest" />
|
||||||
|
import { nxViteTsPaths } from '@nx/vite/plugins/nx-tsconfig-paths.plugin';
|
||||||
|
import { defineConfig } from 'vite';
|
||||||
|
|
||||||
/// <reference types="vitest" />
|
export default defineConfig({
|
||||||
import { defineConfig } from 'vite';
|
cacheDir: '../../../node_modules/.vite/_internal-directives',
|
||||||
|
|
||||||
import { nxViteTsPaths } from '@nx/vite/plugins/nx-tsconfig-paths.plugin';
|
plugins: [nxViteTsPaths()],
|
||||||
|
|
||||||
|
// Uncomment this if you are using workers.
|
||||||
|
// worker: {
|
||||||
|
// plugins: [ nxViteTsPaths() ],
|
||||||
|
// },
|
||||||
|
|
||||||
export default defineConfig({
|
test: {
|
||||||
cacheDir: '../../../node_modules/.vite/_internal-directives',
|
reporters: ['default'],
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
plugins: [
|
|
||||||
|
|
||||||
|
|
||||||
nxViteTsPaths(),
|
|
||||||
],
|
|
||||||
|
|
||||||
|
|
||||||
// Uncomment this if you are using workers.
|
|
||||||
// worker: {
|
|
||||||
// plugins: [ nxViteTsPaths() ],
|
|
||||||
// },
|
|
||||||
|
|
||||||
|
|
||||||
test: {
|
|
||||||
globals: true,
|
globals: true,
|
||||||
cache: {
|
cache: {
|
||||||
dir: '../../../node_modules/.vitest'
|
dir: '../../../node_modules/.vitest',
|
||||||
},
|
},
|
||||||
environment: 'node',
|
environment: 'node',
|
||||||
include: ['src/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}'],
|
include: ['src/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}'],
|
||||||
|
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
/// <reference types="vitest" />
|
/// <reference types="vitest" />
|
||||||
import { defineConfig } from 'vite';
|
|
||||||
|
|
||||||
import { nxViteTsPaths } from '@nx/vite/plugins/nx-tsconfig-paths.plugin';
|
import { nxViteTsPaths } from '@nx/vite/plugins/nx-tsconfig-paths.plugin';
|
||||||
|
import { defineConfig } from 'vite';
|
||||||
|
|
||||||
export default defineConfig({
|
export default defineConfig({
|
||||||
cacheDir: '../../../node_modules/.vite/panels-bottom-panel',
|
cacheDir: '../../../node_modules/.vite/panels-bottom-panel',
|
||||||
@@ -14,6 +13,7 @@ export default defineConfig({
|
|||||||
// },
|
// },
|
||||||
|
|
||||||
test: {
|
test: {
|
||||||
|
reporters: ['default'],
|
||||||
globals: true,
|
globals: true,
|
||||||
cache: {
|
cache: {
|
||||||
dir: '../../../node_modules/.vitest',
|
dir: '../../../node_modules/.vitest',
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
/// <reference types="vitest" />
|
/// <reference types="vitest" />
|
||||||
import { defineConfig } from 'vite';
|
|
||||||
|
|
||||||
import { nxViteTsPaths } from '@nx/vite/plugins/nx-tsconfig-paths.plugin';
|
import { nxViteTsPaths } from '@nx/vite/plugins/nx-tsconfig-paths.plugin';
|
||||||
|
import { defineConfig } from 'vite';
|
||||||
|
|
||||||
export default defineConfig({
|
export default defineConfig({
|
||||||
cacheDir: '../../../node_modules/.vite/panels-side-panel',
|
cacheDir: '../../../node_modules/.vite/panels-side-panel',
|
||||||
@@ -14,6 +13,7 @@ export default defineConfig({
|
|||||||
// },
|
// },
|
||||||
|
|
||||||
test: {
|
test: {
|
||||||
|
reporters: ['default'],
|
||||||
globals: true,
|
globals: true,
|
||||||
cache: {
|
cache: {
|
||||||
dir: '../../../node_modules/.vitest',
|
dir: '../../../node_modules/.vitest',
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
/// <reference types="vitest" />
|
/// <reference types="vitest" />
|
||||||
import { defineConfig } from 'vite';
|
|
||||||
|
|
||||||
import { nxViteTsPaths } from '@nx/vite/plugins/nx-tsconfig-paths.plugin';
|
import { nxViteTsPaths } from '@nx/vite/plugins/nx-tsconfig-paths.plugin';
|
||||||
|
import { defineConfig } from 'vite';
|
||||||
|
|
||||||
export default defineConfig({
|
export default defineConfig({
|
||||||
cacheDir: '../../node_modules/.vite/tooltip',
|
cacheDir: '../../node_modules/.vite/tooltip',
|
||||||
@@ -14,6 +13,7 @@ export default defineConfig({
|
|||||||
// },
|
// },
|
||||||
|
|
||||||
test: {
|
test: {
|
||||||
|
reporters: ['default'],
|
||||||
globals: true,
|
globals: true,
|
||||||
cache: {
|
cache: {
|
||||||
dir: '../../node_modules/.vitest',
|
dir: '../../node_modules/.vitest',
|
||||||
|
|||||||
130
migrations.json
130
migrations.json
@@ -2,107 +2,73 @@
|
|||||||
"migrations": [
|
"migrations": [
|
||||||
{
|
{
|
||||||
"cli": "nx",
|
"cli": "nx",
|
||||||
"version": "16.8.0-beta.3",
|
"version": "17.3.0-beta.6",
|
||||||
"description": "Escape $ in env variables",
|
"description": "Updates the nx wrapper.",
|
||||||
"implementation": "./src/migrations/update-16-8-0/escape-dollar-sign-env-variables",
|
"implementation": "./src/migrations/update-17-3-0/update-nxw",
|
||||||
"package": "nx",
|
"package": "nx",
|
||||||
"name": "16.8.0-escape-dollar-sign-env"
|
"name": "17.3.0-update-nx-wrapper"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"cli": "nx",
|
"cli": "nx",
|
||||||
"version": "17.0.0-beta.1",
|
"version": "18.0.0-beta.2",
|
||||||
"description": "Updates the default cache directory to .nx/cache",
|
"description": "Updates nx.json to disabled adding plugins when generating projects in an existing Nx workspace",
|
||||||
"implementation": "./src/migrations/update-17-0-0/move-cache-directory",
|
"implementation": "./src/migrations/update-18-0-0/disable-crystal-for-existing-workspaces",
|
||||||
|
"x-repair-skip": true,
|
||||||
"package": "nx",
|
"package": "nx",
|
||||||
"name": "17.0.0-move-cache-directory"
|
"name": "18.0.0-disable-adding-plugins-for-existing-workspaces"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"version": "18.1.0-beta.3",
|
||||||
|
"description": "Moves affected.defaultBase to defaultBase in `nx.json`",
|
||||||
|
"implementation": "./src/migrations/update-17-2-0/move-default-base",
|
||||||
|
"package": "nx",
|
||||||
|
"name": "move-default-base-to-nx-json-root"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"cli": "nx",
|
"cli": "nx",
|
||||||
"version": "17.0.0-beta.3",
|
"version": "19.2.0-beta.2",
|
||||||
"description": "Use minimal config for tasksRunnerOptions",
|
"description": "Updates the default workspace data directory to .nx/workspace-data",
|
||||||
"implementation": "./src/migrations/update-17-0-0/use-minimal-config-for-tasks-runner-options",
|
"implementation": "./src/migrations/update-19-2-0/move-workspace-data-directory",
|
||||||
"package": "nx",
|
"package": "nx",
|
||||||
"name": "17.0.0-use-minimal-config-for-tasks-runner-options"
|
"name": "19-2-0-move-graph-cache-directory"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"version": "17.0.0-rc.1",
|
"cli": "nx",
|
||||||
"description": "Migration for v17.0.0-rc.1",
|
"version": "19.2.2-beta.0",
|
||||||
"implementation": "./src/migrations/update-17-0-0/rm-default-collection-npm-scope",
|
"description": "Updates the nx wrapper.",
|
||||||
|
"implementation": "./src/migrations/update-17-3-0/update-nxw",
|
||||||
"package": "nx",
|
"package": "nx",
|
||||||
"name": "rm-default-collection-npm-scope"
|
"name": "19-2-2-update-nx-wrapper"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"version": "17.1.0-beta.2",
|
"version": "19.2.4-beta.0",
|
||||||
"description": "Move target defaults",
|
"description": "Set project name in nx.json explicitly",
|
||||||
"implementation": "./src/migrations/update-17-1-0/move-target-defaults",
|
"implementation": "./src/migrations/update-19-2-4/set-project-name",
|
||||||
|
"x-repair-skip": true,
|
||||||
|
"package": "nx",
|
||||||
|
"name": "19-2-4-set-project-name"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"version": "17.3.0-beta.0",
|
||||||
|
"description": "Move the vitest coverage thresholds in their own object if exists and add reporters.",
|
||||||
|
"implementation": "./src/migrations/update-17-3-0/vitest-coverage-and-reporters",
|
||||||
"package": "@nx/vite",
|
"package": "@nx/vite",
|
||||||
"name": "move-target-defaults"
|
"name": "vitest-coverage-and-reporters"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"version": "17.2.0-beta.10",
|
"version": "17.2.9",
|
||||||
"description": "Update vite config.",
|
"description": "Move executor options to target defaults",
|
||||||
"implementation": "./src/migrations/update-17-2-0/update-vite-config",
|
"implementation": "./src/migrations/update-17-2-9/move-options-to-target-defaults",
|
||||||
"package": "@nx/vite",
|
|
||||||
"name": "update-vite-config"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"cli": "nx",
|
|
||||||
"version": "16.8.2-beta.0",
|
|
||||||
"description": "Remove invalid options (strict, noInterop) for ES6 type modules.",
|
|
||||||
"factory": "./src/migrations/update-16-8-2/update-swcrc",
|
|
||||||
"package": "@nx/js",
|
|
||||||
"name": "16-8-2-update-swcrc"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"cli": "nx",
|
|
||||||
"version": "17.0.2",
|
|
||||||
"description": "Remove deprecated build options",
|
|
||||||
"implementation": "./src/migrations/update-17-0-0/remove-deprecated-build-options",
|
|
||||||
"package": "@nx/js",
|
|
||||||
"name": "update-17-0-0-remove-deprecated-build-options"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"cli": "nx",
|
|
||||||
"version": "17-2-6-beta.1",
|
|
||||||
"description": "Rename workspace rules from @nx/workspace/name to @nx/workspace-name",
|
|
||||||
"implementation": "./src/migrations/update-17-2-6-rename-workspace-rules/rename-workspace-rules",
|
|
||||||
"package": "@nx/eslint-plugin",
|
|
||||||
"name": "update-17-2-6-rename-workspace-rules"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"version": "16.8.0",
|
|
||||||
"description": "update-16-8-0-add-ignored-files",
|
|
||||||
"implementation": "./src/migrations/update-16-8-0-add-ignored-files/update-16-8-0-add-ignored-files",
|
|
||||||
"package": "@nx/linter",
|
"package": "@nx/linter",
|
||||||
"name": "update-16-8-0-add-ignored-files"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"version": "17.0.0-beta.7",
|
|
||||||
"description": "update-17-0-0-rename-to-eslint",
|
|
||||||
"implementation": "./src/migrations/update-17-0-0-rename-to-eslint/update-17-0-0-rename-to-eslint",
|
|
||||||
"package": "@nx/linter",
|
|
||||||
"name": "update-17-0-0-rename-to-eslint"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"version": "17.1.0-beta.1",
|
|
||||||
"description": "Updates for @typescript-utils/utils v6.9.1+",
|
|
||||||
"implementation": "./src/migrations/update-17-1-0/update-typescript-eslint",
|
|
||||||
"package": "@nx/linter",
|
|
||||||
"name": "update-typescript-eslint"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"version": "17.2.0-beta.0",
|
|
||||||
"description": "Simplify eslintFilePatterns",
|
|
||||||
"implementation": "./src/migrations/update-17-2-0/simplify-eslint-patterns",
|
|
||||||
"package": "@nx/linter",
|
|
||||||
"name": "simplify-eslint-patterns"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"version": "17.1.0-beta.2",
|
|
||||||
"description": "Move jest executor options to nx.json targetDefaults",
|
|
||||||
"implementation": "./src/migrations/update-17-1-0/move-options-to-target-defaults",
|
|
||||||
"package": "@nx/jest",
|
|
||||||
"name": "move-options-to-target-defaults"
|
"name": "move-options-to-target-defaults"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"cli": "nx",
|
||||||
|
"version": "19.1.0-beta.6",
|
||||||
|
"description": "Migrate no-extra-semi rules into user config, out of nx extendable configs",
|
||||||
|
"implementation": "./src/migrations/update-19-1-0-migrate-no-extra-semi/migrate-no-extra-semi",
|
||||||
|
"package": "@nx/eslint-plugin",
|
||||||
|
"name": "update-19-1-0-rename-no-extra-semi"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
36
nx.json
36
nx.json
@@ -2,38 +2,20 @@
|
|||||||
"$schema": "./node_modules/nx/schemas/nx-schema.json",
|
"$schema": "./node_modules/nx/schemas/nx-schema.json",
|
||||||
"targetDefaults": {
|
"targetDefaults": {
|
||||||
"build": {
|
"build": {
|
||||||
"dependsOn": [
|
"dependsOn": ["^build"],
|
||||||
"^build"
|
"inputs": ["production", "^production"],
|
||||||
],
|
|
||||||
"inputs": [
|
|
||||||
"production",
|
|
||||||
"^production"
|
|
||||||
],
|
|
||||||
"cache": true
|
"cache": true
|
||||||
},
|
},
|
||||||
"test": {
|
"test": {
|
||||||
"inputs": [
|
"inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"],
|
||||||
"default",
|
|
||||||
"^production",
|
|
||||||
"{workspaceRoot}/jest.preset.js"
|
|
||||||
],
|
|
||||||
"cache": true
|
"cache": true
|
||||||
},
|
},
|
||||||
"lint": {
|
"lint": {
|
||||||
"inputs": [
|
"inputs": ["default", "{workspaceRoot}/.eslintrc.json", "{workspaceRoot}/.eslintignore"],
|
||||||
"default",
|
|
||||||
"{workspaceRoot}/.eslintrc.json",
|
|
||||||
"{workspaceRoot}/.eslintignore"
|
|
||||||
],
|
|
||||||
"cache": true
|
"cache": true
|
||||||
},
|
},
|
||||||
"build-storybook": {
|
"build-storybook": {
|
||||||
"inputs": [
|
"inputs": ["default", "^production", "{projectRoot}/.storybook/**/*", "{projectRoot}/tsconfig.storybook.json"],
|
||||||
"default",
|
|
||||||
"^production",
|
|
||||||
"{projectRoot}/.storybook/**/*",
|
|
||||||
"{projectRoot}/tsconfig.storybook.json"
|
|
||||||
],
|
|
||||||
"cache": true
|
"cache": true
|
||||||
},
|
},
|
||||||
"e2e": {
|
"e2e": {
|
||||||
@@ -41,10 +23,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"namedInputs": {
|
"namedInputs": {
|
||||||
"default": [
|
"default": ["{projectRoot}/**/*", "sharedGlobals"],
|
||||||
"{projectRoot}/**/*",
|
|
||||||
"sharedGlobals"
|
|
||||||
],
|
|
||||||
"production": [
|
"production": [
|
||||||
"default",
|
"default",
|
||||||
"!{projectRoot}/**/?(*.)+(spec|test).[jt]s?(x)?(.snap)",
|
"!{projectRoot}/**/?(*.)+(spec|test).[jt]s?(x)?(.snap)",
|
||||||
@@ -58,5 +37,6 @@
|
|||||||
"!{projectRoot}/tsconfig.storybook.json"
|
"!{projectRoot}/tsconfig.storybook.json"
|
||||||
],
|
],
|
||||||
"sharedGlobals": []
|
"sharedGlobals": []
|
||||||
}
|
},
|
||||||
|
"useInferencePlugins": false
|
||||||
}
|
}
|
||||||
|
|||||||
32
package.json
32
package.json
@@ -13,14 +13,14 @@
|
|||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/plugin-proposal-decorators": "^7.23.7",
|
"@babel/plugin-proposal-decorators": "^7.23.7",
|
||||||
"@nx/eslint-plugin": "17.2.8",
|
"@nx/eslint-plugin": "19.5.6",
|
||||||
"@nx/jest": "17.2.8",
|
"@nx/jest": "19.5.6",
|
||||||
"@nx/js": "17.2.8",
|
"@nx/js": "19.5.6",
|
||||||
"@nx/linter": "17.2.8",
|
"@nx/linter": "19.5.6",
|
||||||
"@nx/storybook": "17.2.8",
|
"@nx/storybook": "19.5.6",
|
||||||
"@nx/vite": "17.2.8",
|
"@nx/vite": "19.5.6",
|
||||||
"@nx/web": "17.2.8",
|
"@nx/web": "19.5.6",
|
||||||
"@nx/workspace": "17.2.8",
|
"@nx/workspace": "19.5.6",
|
||||||
"@storybook/addon-essentials": "7.6.7",
|
"@storybook/addon-essentials": "7.6.7",
|
||||||
"@storybook/addon-interactions": "7.6.7",
|
"@storybook/addon-interactions": "7.6.7",
|
||||||
"@storybook/core-server": "7.6.7",
|
"@storybook/core-server": "7.6.7",
|
||||||
@@ -32,25 +32,25 @@
|
|||||||
"@storybook/web-components-webpack5": "7.6.7",
|
"@storybook/web-components-webpack5": "7.6.7",
|
||||||
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
|
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
|
||||||
"@types/jest": "^29.5.11",
|
"@types/jest": "^29.5.11",
|
||||||
"@types/node": "20.10.6",
|
"@types/node": "18.19.9",
|
||||||
"@typescript-eslint/eslint-plugin": "6.17.0",
|
"@typescript-eslint/eslint-plugin": "7.18.0",
|
||||||
"@typescript-eslint/parser": "6.17.0",
|
"@typescript-eslint/parser": "7.18.0",
|
||||||
"@vitest/coverage-c8": "~0.33.0",
|
"@vitest/coverage-c8": "~0.33.0",
|
||||||
"@vitest/ui": "1.1.3",
|
"@vitest/ui": "1.6.0",
|
||||||
"eslint": "8.56.0",
|
"eslint": "8.57.0",
|
||||||
"eslint-config-prettier": "9.1.0",
|
"eslint-config-prettier": "9.1.0",
|
||||||
"jest": "^29.7.0",
|
"jest": "^29.7.0",
|
||||||
"jest-environment-node": "^29.7.0",
|
"jest-environment-node": "^29.7.0",
|
||||||
"nx": "17.2.8",
|
"nx": "19.5.6",
|
||||||
"prettier": "^3.1.1",
|
"prettier": "^3.1.1",
|
||||||
"rxjs": "^7.8.1",
|
"rxjs": "^7.8.1",
|
||||||
"ts-jest": "^29.1.1",
|
"ts-jest": "^29.1.1",
|
||||||
"ts-node": "10.9.2",
|
"ts-node": "10.9.2",
|
||||||
"typescript": "~5.3.3",
|
"typescript": "5.5.4",
|
||||||
"verdaccio": "^5.29.0",
|
"verdaccio": "^5.29.0",
|
||||||
"vite": "5.0.11",
|
"vite": "5.0.11",
|
||||||
"vite-plugin-dts": "~3.7.0",
|
"vite-plugin-dts": "~3.7.0",
|
||||||
"vitest": "1.1.3"
|
"vitest": "1.6.0"
|
||||||
},
|
},
|
||||||
"nx": {
|
"nx": {
|
||||||
"includedScripts": []
|
"includedScripts": []
|
||||||
|
|||||||
16805
pnpm-lock.yaml
generated
16805
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user