Skip to content

Commit

Permalink
Improvements (#156)
Browse files Browse the repository at this point in the history
  • Loading branch information
TriPSs authored Sep 14, 2023
2 parents ff49cbb + c32c883 commit 2baf8bc
Show file tree
Hide file tree
Showing 10 changed files with 555 additions and 540 deletions.
38 changes: 19 additions & 19 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,49 +32,49 @@
"workspace-generator": "nx workspace-generator"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@nx/devkit": "16.8.0",
"@nx/workspace": "16.8.0",
"@actions/core": "^1.10.1",
"@nx/devkit": "16.8.1",
"@nx/workspace": "16.8.1",
"@types/tar": "^6.1.5",
"axios": "^1.5.0",
"crypto-js": "^4.1.1",
"deepmerge": "^4.3.1",
"rxjs-for-await": "^1.0.0",
"shelljs": "^0.8.5",
"tar": "^6.1.15",
"tar": "^6.2.0",
"tslib": "^2.6.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@google-cloud/functions-framework": "^3.3.0",
"@google-cloud/storage": "^7.0.1",
"@google-cloud/storage": "^7.1.0",
"@jamesives/github-pages-deploy-action": "^4.4.3",
"@jscutlery/semver": "^3.1.0",
"@nx/eslint-plugin": "16.8.0",
"@nx/jest": "16.8.0",
"@nx/js": "16.8.0",
"@nx/node": "16.8.0",
"@nx/plugin": "16.8.0",
"@nx/react": "16.8.0",
"@nx/webpack": "16.8.0",
"@nx/eslint-plugin": "16.8.1",
"@nx/jest": "16.8.1",
"@nx/js": "16.8.1",
"@nx/node": "16.8.1",
"@nx/plugin": "16.8.1",
"@nx/react": "16.8.1",
"@nx/webpack": "16.8.1",
"@swc-node/register": "^1.6.7",
"@swc/core": "^1.3.81",
"@swc/core": "^1.3.84",
"@types/jest": "29.5.4",
"@types/node": "20.5.7",
"@types/node": "20.6.0",
"@types/shelljs": "^0.8.12",
"@types/yargs": "^17.0.24",
"@typescript-eslint/eslint-plugin": "6.5.0",
"@typescript-eslint/parser": "6.5.0",
"@typescript-eslint/eslint-plugin": "6.7.0",
"@typescript-eslint/parser": "6.7.0",
"dotenv": "16.3.1",
"eslint": "8.48.0",
"eslint": "8.49.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"express": "^4.18.2",
"husky": "^8.0.3",
"jest": "29.6.4",
"jest-environment-jsdom": "29.6.4",
"nx": "16.8.0",
"nx-cloud": "16.3.0",
"nx": "16.8.1",
"nx-cloud": "16.4.0",
"prettier": "3.0.3",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
Expand Down
20 changes: 1 addition & 19 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,6 @@
"version": "4.4.0",
"main": "src/index.js",
"nx-migrations": {
"migrations": "./migrations.json",
"packageGroup": [
"@nx-extend/changelog-notify",
"@nx-extend/e2e-runner",
"@nx-extend/firebase-hosting",
"@nx-extend/gcp-cloud-run",
"@nx-extend/gcp-deployment-manager",
"@nx-extend/gcp-functions",
"@nx-extend/gcp-secrets",
"@nx-extend/gcp-storage",
"@nx-extend/gcp-task-runner",
"@nx-extend/github-pages",
"@nx-extend/playwright",
"@nx-extend/pulumi",
"@nx-extend/strapi",
"@nx-extend/terraform",
"@nx-extend/translations",
"@nx-extend/vercel"
]
"migrations": "./migrations.json"
}
}
2 changes: 2 additions & 0 deletions packages/core/src/utils/use-verbose-logging.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import { isCI } from './is-ci'

export const USE_VERBOSE_LOGGING = isCI() || Boolean(process.env.NX_VERBOSE_LOGGING)

export const USE_VERBOSE_LOGGING_MINIMAL = Boolean(process.env.NX_VERBOSE_LOGGING || process.env. ACTIONS_RUNNER_DEBUG)
2 changes: 1 addition & 1 deletion packages/firebase-hosting/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"license": "MIT",
"main": "src/index.js",
"dependencies": {
"firebase-tools": "^12.5.2"
"firebase-tools": "^12.5.3"
},
"builders": "./executors.json",
"generators": "./generators.json"
Expand Down
6 changes: 3 additions & 3 deletions packages/gcp-functions/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
"builders": "./executors.json",
"generators": "./generators.json",
"devDependencies": {
"@nestjs/common": "^10.2.3",
"@nestjs/core": "^10.2.3",
"@nestjs/platform-express": "^10.2.3"
"@nestjs/common": "^10.2.5",
"@nestjs/core": "^10.2.5",
"@nestjs/platform-express": "^10.2.5"
}
}
2 changes: 1 addition & 1 deletion packages/gcp-task-runner/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"version": "4.1.4",
"main": "src/index.js",
"dependencies": {
"@google-cloud/storage": "7.0.1"
"@google-cloud/storage": "7.1.0"
}
}
4 changes: 2 additions & 2 deletions packages/pulumi/src/executors/up/up.impl.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { ExecutorContext } from '@nx/devkit'
import { buildCommand, USE_VERBOSE_LOGGING } from '@nx-extend/core'
import { buildCommand, USE_VERBOSE_LOGGING_MINIMAL } from '@nx-extend/core'
import { execSync } from 'child_process'
import { which } from 'shelljs'

Expand Down Expand Up @@ -28,7 +28,7 @@ export default async function creatExecutor(
options.skipPreview && '--skip-preview',
options.yes && '--yes',
options.suppressOutputs && '--suppress-outputs',
USE_VERBOSE_LOGGING && '--debug',
USE_VERBOSE_LOGGING_MINIMAL && '--debug',
options.json && '--json'
]),
{
Expand Down
4 changes: 2 additions & 2 deletions packages/strapi/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
"license": "MIT",
"main": "src/index.js",
"dependencies": {
"@strapi/generate-new": "^4.13.1",
"@strapi/strapi": "^4.13.1"
"@strapi/generate-new": "^4.13.4",
"@strapi/strapi": "^4.13.4"
},
"builders": "./executors.json",
"generators": "./generators.json"
Expand Down
2 changes: 1 addition & 1 deletion packages/translations/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"license": "MIT",
"main": "src/index.js",
"dependencies": {
"@formatjs/cli": "^6.1.3"
"@formatjs/cli": "^6.1.5"
},
"builders": "./executors.json",
"generators": "./generators.json"
Expand Down
Loading

0 comments on commit 2baf8bc

Please sign in to comment.