-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: NX modules not found in the workspace (#523)
- Loading branch information
Showing
3 changed files
with
5,000 additions
and
4,879 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 |
---|---|---|
|
@@ -2,4 +2,5 @@ node_modules | |
dist | ||
build | ||
|
||
.env | ||
.env | ||
.nx |
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 |
---|---|---|
|
@@ -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 [email protected] 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", | ||
|
@@ -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" | ||
} | ||
} | ||
} |
Oops, something went wrong.