Skip to content

Commit

Permalink
chore: update packages (#17)
Browse files Browse the repository at this point in the history
* chore: update packages

* fix: dependencies

* fix: format issues
  • Loading branch information
nacho-vazquez authored Aug 19, 2023
1 parent 5485e10 commit 13f7829
Show file tree
Hide file tree
Showing 5 changed files with 412 additions and 488 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,21 +45,21 @@ jobs:
# in the parallel-commands-on-agents command list
# The --agent-count parameter must match the number-of-agents parameter
init-commands: |
yarn nx-cloud start-ci-run --stop-agents-after="e2e" --agent-count=4
pnpm nx-cloud start-ci-run --stop-agents-after="e2e" --agent-count=4
# Commands run in parallel on this DTE coordinator
parallel-commands: |
yarn nx-cloud record -- yarn nx format:check
pnpm nx-cloud record -- pnpm nx format:check
# Commands distributed between DTE agents
# Distribution strategy for 2 vCPUs per hosted runner (GitHub Free):
# lint: 2 tasks assigned at a time, 1 task per vCPU
# test: 1 task assigned at a time with 2 parallel processes, 1 process per vCPU
# build: 2 tasks assigned at a time, 1 task per vCPU
# e2e: 1 task assigned at a time, 1 task total
parallel-commands-on-agents: |
yarn nx run-many --all --target=lint --configuration=report --parallel=2 --max-warnings=0
yarn nx run-many --all --target=test --configuration=coverage --parallel=1 --max-workers=2
yarn nx affected --target=build --parallel=2
yarn nx affected --target=e2e --parallel=1
pnpm nx run-many --all --target=lint --configuration=report --parallel=2 --max-warnings=0
pnpm nx run-many --all --target=test --configuration=coverage --parallel=1 --max-workers=2
pnpm nx affected --target=build --parallel=2
pnpm nx affected --target=e2e --parallel=1
# Commands run sequentially on this DTE coordinator after parallel jobs
# final-commands: |

Expand Down
38 changes: 19 additions & 19 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,49 +7,49 @@
},
"private": true,
"devDependencies": {
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@jscutlery/semver": "^3.1.0",
"@nx/angular": "16.6.0",
"@nx/devkit": "16.6.0",
"@nx/eslint-plugin": "16.6.0",
"@nx/jest": "16.6.0",
"@nx/js": "16.6.0",
"@nx/linter": "16.6.0",
"@nx/node": "16.6.0",
"@nx/plugin": "16.6.0",
"@nx/vite": "16.6.0",
"@nx/web": "^16.6.0",
"@nx/workspace": "16.6.0",
"@nx/angular": "16.7.2",
"@nx/devkit": "16.7.2",
"@nx/eslint-plugin": "16.7.2",
"@nx/jest": "16.7.2",
"@nx/js": "16.7.2",
"@nx/linter": "16.7.2",
"@nx/node": "16.7.2",
"@nx/plugin": "16.7.2",
"@nx/vite": "16.7.2",
"@nx/web": "16.7.2",
"@nx/workspace": "16.7.2",
"@swc-node/register": "~1.4.2",
"@swc/cli": "~0.1.62",
"@swc/core": "~1.3.51",
"@swc/helpers": "~0.5.0",
"@types/fs-extra": "^11.0.1",
"@types/jest": "^29.4.0",
"@types/node": "18.7.1",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"chalk": "^4.1.2",
"cli-spinners": "^2.9.0",
"eslint": "~8.15.0",
"eslint": "8.46.0",
"eslint-config-prettier": "8.1.0",
"fs-extra": "^11.1.1",
"husky": "^8.0.0",
"jest": "^29.4.1",
"jest-environment-jsdom": "^29.4.1",
"kill-port": "^2.0.1",
"ngx-deploy-npm": "^6.0.0",
"nx": "16.6.0",
"nx-cloud": "16.2.0",
"nx": "16.7.2",
"nx-cloud": "16.4.0-beta.1",
"prettier": "^2.6.2",
"tcp-port-used": "^1.0.2",
"tree-kill": "^1.2.2",
"ts-jest": "^29.1.0",
"ts-node": "10.9.1",
"typescript": "~5.1.3",
"verdaccio": "^5.0.4",
"wrangler": "^3.4.0"
"wrangler": "^3.5.1"
},
"dependencies": {
"tslib": "^2.3.0"
Expand Down
7 changes: 4 additions & 3 deletions packages/plugins/nx-cloudflare/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,9 @@
"executors": "./executors.json",
"dependencies": {
"tslib": "^2.3.0",
"@nx/devkit": "^16.6.0",
"@nx/node": "^16.6.0",
"@nx/web": "^16.6.0"
"@nx/devkit": ">= 16.0.0",
"@nx/node": ">= 16.0.0",
"@nx/web": ">= 16.0.0",
"wrangler": ">= 3.0.0"
}
}
2 changes: 1 addition & 1 deletion packages/plugins/nx-cloudflare/src/utils/versions.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// eslint-disable-next-line @typescript-eslint/no-var-requires
export const nxCloudflareVersion = require('../../package.json').version;

export const wranglerVersion = '^3.4.0';
export const wranglerVersion = '^3.5.1';
export const cloudflareWorkersTypeVersions = '^4.20230724.0';
export const honoVersion = '^2.5.7';
Loading

0 comments on commit 13f7829

Please sign in to comment.