Browse Source

Add Profiling

pull/5027/head
Dan 1 year ago
parent
commit
67972c889d
  1. 7
      apps/api/project.json
  2. 23
      package.json
  3. 701
      yarn.lock

7
apps/api/project.json

@ -39,6 +39,13 @@
"buildTarget": "api:build" "buildTarget": "api:build"
} }
}, },
"profile": {
"executor": "@nx/js:node",
"options": {
"buildTarget": "api:build",
"runtimeArgs": ["--perf-basic-prof-only-functions"]
}
},
"lint": { "lint": {
"executor": "@nx/eslint:lint", "executor": "@nx/eslint:lint",
"options": { "options": {

23
package.json

@ -51,6 +51,7 @@
"ts-node": "ts-node", "ts-node": "ts-node",
"update": "nx migrate latest", "update": "nx migrate latest",
"watch:server": "nx run api:build --watch", "watch:server": "nx run api:build --watch",
"profile:server": "nx run api:profile",
"watch:test": "nx test --watch", "watch:test": "nx test --watch",
"workspace-generator": "nx workspace-generator" "workspace-generator": "nx workspace-generator"
}, },
@ -151,16 +152,16 @@
"@angular/pwa": "17.1.3", "@angular/pwa": "17.1.3",
"@nestjs/schematics": "10.0.1", "@nestjs/schematics": "10.0.1",
"@nestjs/testing": "10.1.3", "@nestjs/testing": "10.1.3",
"@nx/angular": "18.0.4", "@nx/angular": "17.0.2",
"@nx/cypress": "18.0.4", "@nx/cypress": "17.0.2",
"@nx/eslint-plugin": "18.0.4", "@nx/eslint-plugin": "17.0.2",
"@nx/jest": "18.0.4", "@nx/jest": "17.0.2",
"@nx/js": "18.0.4", "@nx/js": "17.0.2",
"@nx/nest": "18.0.4", "@nx/nest": "17.0.2",
"@nx/node": "18.0.4", "@nx/node": "17.0.2",
"@nx/storybook": "18.0.4", "@nx/storybook": "17.0.2",
"@nx/web": "18.0.4", "@nx/web": "17.0.2",
"@nx/workspace": "18.0.4", "@nx/workspace": "17.0.2",
"@schematics/angular": "17.1.3", "@schematics/angular": "17.1.3",
"@simplewebauthn/typescript-types": "8.0.0", "@simplewebauthn/typescript-types": "8.0.0",
"@storybook/addon-essentials": "7.6.5", "@storybook/addon-essentials": "7.6.5",
@ -189,7 +190,7 @@
"jest": "29.4.3", "jest": "29.4.3",
"jest-environment-jsdom": "29.4.3", "jest-environment-jsdom": "29.4.3",
"jest-preset-angular": "13.1.4", "jest-preset-angular": "13.1.4",
"nx": "18.0.4", "nx": "17.0.2",
"prettier": "3.2.5", "prettier": "3.2.5",
"prettier-plugin-organize-attributes": "1.0.0", "prettier-plugin-organize-attributes": "1.0.0",
"react": "18.2.0", "react": "18.2.0",

701
yarn.lock

File diff suppressed because it is too large
Loading…
Cancel
Save