Skip to content

Commit

Permalink
fix: Trying to fix the package releases pipeline (#105)
Browse files Browse the repository at this point in the history
* Trying to fix the package releases

* Trying something else

* Removed the samples from postinstall

* Trying something

* Fixing CI

* Removed another bunch of --parallel
  • Loading branch information
patricklafrance authored Nov 2, 2023
1 parent cf9b9ae commit 6f006d9
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
},
"scripts": {
"postinstall": "pnpm -r --parallel --include-workspace-root exec pnpm dlx rimraf node_modules/.cache && pnpm temporary-script-until-build-order-topology-is-fixed",
"temporary-script-until-build-order-topology-is-fixed": "pnpm build && pnpm build-basic && pnpm build-endpoints",
"temporary-script-until-build-order-topology-is-fixed": "pnpm build",
"dev": "pnpm --filter \"./packages/*\" -r --parallel dev",
"build": "pnpm --filter \"./packages/*\" -r --parallel build",
"build": "pnpm --filter \"./packages/*\" -r build",
"test": "jest",
"lint": "pnpm run \"/^lint:.*/\"",
"lint:eslint": "eslint . --max-warnings=-1 --cache --cache-location node_modules/.cache/eslint",
Expand All @@ -23,19 +23,19 @@
"reset": "pnpm clean && pnpm reset:modules",
"reset:modules": "pnpm -r --parallel --include-workspace-root exec pnpm dlx rimraf node_modules pnpm-lock.yaml",
"dev-basic": "pnpm --filter \"./samples/basic/*\" -r --parallel dev",
"build-basic": "pnpm --filter \"./samples/basic/*\" -r --parallel build",
"build-basic": "pnpm --filter \"./samples/basic/*\" -r build",
"serve-basic": "pnpm --filter \"./samples/basic/*\" -r --parallel serve-build",
"deploy-basic": "cross-env NETLIFY=true pnpm build-basic && pnpm run deploy-basic:host && pnpm run deploy-basic:remote-module && pnpm run deploy-basic:another-remote-module",
"deploy-basic:host": "netlify deploy --dir=samples/basic/host/dist --site=ae684cea-e6b1-4293-95d6-fc82462654c8 --prod",
"deploy-basic:remote-module": "netlify deploy --dir=samples/basic/remote-module/dist --site=43234f6e-a884-410e-9b4d-f290459f841f --prod",
"deploy-basic:another-remote-module": "netlify deploy --dir=samples/basic/another-remote-module/dist --site=2673b626-74aa-4c03-8a8f-8c794e90fd07 --prod",
"dev-endpoints": "pnpm --filter \"./samples/endpoints/*\" -r --parallel dev",
"build-endpoints": "pnpm --filter \"./samples/endpoints/*\" -r --parallel build",
"build-endpoints": "pnpm --filter \"./samples/endpoints/*\" -r build",
"serve-endpoints": "pnpm --filter \"./samples/endpoints/*\" -r --parallel serve-build",
"deploy-endpoints": "cross-env NETLIFY=true pnpm build-endpoints && pnpm run deploy-endpoints:host && pnpm run deploy-endpoints:remote-module",
"deploy-endpoints:host": "netlify deploy --dir=samples/endpoints/host/dist --site=4bde6b8b-cea6-487f-913b-acec9332eb2f --prod",
"deploy-endpoints:remote-module": "netlify deploy --dir=samples/endpoints/remote-module/dist --site=a3f091c3-2bc9-4c50-83a0-72fc6d7fa158 --prod",
"build-endpoints-isolated": "pnpm --filter \"./samples/endpoints/*\" -r --parallel build-isolated",
"build-endpoints-isolated": "pnpm --filter \"./samples/endpoints/*\" -r build-isolated",
"deploy-endpoints-isolated": "cross-env NETLIFY=true pnpm build-endpoints-isolated && pnpm run deploy-endpoints-isolated:remote-module",
"deploy-endpoints-isolated:remote-module": "netlify deploy --dir=samples/endpoints/remote-module/dist --site=1eacb274-6182-420e-b6e7-ada6f10cc487 --prod",
"dev-docs": "retype start",
Expand Down
8 changes: 4 additions & 4 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion samples/basic/host/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"@squide/fakes": ["../../../packages/fakes/src/index.ts"],
"@basic/shell": ["../shell/src/index.ts"],
"@basic/shared": ["../shared/src/index.ts"],
"@basic/local-module": ["../local-module/src/register.ts"]
"@basic/local-module": ["../local-module/src/register.tsx"]
}
},
"exclude": ["dist", "node_modules"]
Expand Down
2 changes: 1 addition & 1 deletion samples/endpoints/host/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"@squide/fakes": ["../../../packages/fakes/src/index.ts"],
"@endpoints/shell": ["../shell/src/index.ts"],
"@endpoints/shared": ["../shared/src/index.ts"],
"@endpoints/local-module": ["../local-module/src/register.ts"]
"@endpoints/local-module": ["../local-module/src/register.tsx"]
}
},
"exclude": ["dist", "node_modules"]
Expand Down

0 comments on commit 6f006d9

Please sign in to comment.