Skip to content

Commit

Permalink
fix: NX modules not found in the workspace (#523)
Browse files Browse the repository at this point in the history
  • Loading branch information
chavda-bhavik authored Mar 8, 2024
2 parents ff88c99 + caae3b2 commit 509c7d9
Show file tree
Hide file tree
Showing 3 changed files with 5,000 additions and 4,879 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@ node_modules
dist
build

.env
.env
.nx
56 changes: 28 additions & 28 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,40 +6,40 @@
"private": true,
"scripts": {
"clean": "pnpm run prebuild && lerna clean --yes",
"lint": "nx run-many --target=lint --all",
"lint": "npx nx run-many --target=lint --all",
"kill-ports": "npx kill-port 4701 3000 3500 4200",
"setup:project": "npx pnpm@7.9.4 i && node scripts/setup-env-files.js",
"start:dev": "cross-env TZ=UTC lerna run start --parallel --scope=@impler/{api,widget,embed,queue-manager,web}",
"start:demo": "cross-env nx run @impler/demo:start",
"start:dal": "cross-env nx run @impler/dal:start",
"start:api": "cross-env nx run @impler/api:start",
"start:embed": "cross-env nx run @impler/embed:start",
"start:widget": "cross-env nx run @impler/widget:start",
"start:queue-manager": "cross-env nx run @impler/queue-manager:start",
"start:web": "cross-env nx run @impler/web:start",
"prebuild": "nx run-many --target=prebuild --all",
"build": "nx run-many --target=build --all",
"build:api": "nx build @impler/api",
"build:dal": "nx build @impler/dal",
"build:react": "nx build @impler/react",
"build:shared": "nx build @impler/shared",
"build:widget": "nx build @impler/widget",
"build:embed": "nx build @impler/embed",
"build:client": "nx build @impler/client",
"build:demo": "nx build @impler/demo",
"build:web": "nx build @impler/web",
"build:queue-manager": "nx build @impler/queue-manager",
"start:dev": "npx nx run-many --target=start -p @impler/api @impler/web @impler/widget @impler/embed @impler/queue-manager --parallel=5",
"start:demo": "cross-env npx nx run @impler/demo:start",
"start:dal": "cross-env npx nx run @impler/dal:start",
"start:api": "cross-env npx nx run @impler/api:start",
"start:embed": "cross-env npx nx run @impler/embed:start",
"start:widget": "cross-env npx nx run @impler/widget:start",
"start:queue-manager": "cross-env npx nx run @impler/queue-manager:start",
"start:web": "cross-env npx nx run @impler/web:start",
"prebuild": "npx nx run-many --target=prebuild --all",
"build": "npx nx run-many --target=build --all",
"build:api": "npx nx build @impler/api",
"build:dal": "npx nx build @impler/dal",
"build:react": "npx nx build @impler/react",
"build:shared": "npx nx build @impler/shared",
"build:widget": "npx nx build @impler/widget",
"build:embed": "npx nx build @impler/embed",
"build:client": "npx nx build @impler/client",
"build:demo": "npx nx build @impler/demo",
"build:web": "npx nx build @impler/web",
"build:queue-manager": "npx nx build @impler/queue-manager",
"docker:build:api": "docker build -t api -f apps/api/Dockerfile .",
"docker:build:embed": "docker build -t embed -f libs/embed/Dockerfile .",
"docker:build:widget": "docker build -t widget -f apps/widget/Dockerfile .",
"docker:build:queue-manager": "docker build -t queue-manager -f apps/queue-manager/Dockerfile .",
"docker:build:demo": "docker build -t demo -f apps/demo/Dockerfile .",
"docker:build:web": "docker build -t web -f apps/web/Dockerfile .",
"start:static:widget": "cross-env nx start:static:build @impler/widget",
"start:static:demo": "cross-env nx start:static:build @impler/demo",
"start:static:web": "cross-env nx start:static:build @impler/web",
"start:docker:embed": "cross-env nx start:docker @impler/embed",
"test": "nx run-many --target=test --all",
"start:static:widget": "cross-env npx npx nx start:static:build @impler/widget",
"start:static:demo": "cross-env npx nx start:static:build @impler/demo",
"start:static:web": "cross-env npx nx start:static:build @impler/web",
"start:docker:embed": "cross-env npx nx start:docker @impler/embed",
"test": "npx nx run-many --target=test --all",
"test:api": "pnpm run --filter @impler/api test",
"release:patch": "lerna version patch --no-push",
"release:minor": "lerna version minor --no-push",
Expand Down Expand Up @@ -106,11 +106,11 @@
"husky": "^8.0.3",
"lerna": "^6.4.1",
"lint-staged": "^13.1.0",
"nx": "^14.8.6",
"nx": "^18.0.7",
"prettier": "^2.8.3"
},
"dependencies": {
"amqp-connection-manager": "^4.1.10",
"amqplib": "^0.10.3"
}
}
}
Loading

0 comments on commit 509c7d9

Please sign in to comment.