[dev] CI: liverage composer packages cache in pr-lint-monorepo workflow (#52054)
This commit is contained in:
parent
e148229edb
commit
46433747a2
|
@ -13,11 +13,14 @@ inputs:
|
||||||
build-type:
|
build-type:
|
||||||
description: 'Given "full" or "backend" will perform optimized build steps.'
|
description: 'Given "full" or "backend" will perform optimized build steps.'
|
||||||
default: 'full'
|
default: 'full'
|
||||||
|
pull-package-deps:
|
||||||
|
description: 'Given a string value, will pull the package specific dependencies cache.'
|
||||||
|
default: false
|
||||||
pull-playwright-cache:
|
pull-playwright-cache:
|
||||||
description: 'Given a boolean value, invokes Playwright dependencies caching.'
|
description: 'Given a boolean value, invokes Playwright dependencies caching.'
|
||||||
default: false
|
default: false
|
||||||
pull-package-deps:
|
pull-package-composer-deps:
|
||||||
description: 'Given a string value, will pull the package specific dependencies cache.'
|
description: 'Given a string value, will pull the package specific dependencies cache. Not necessary if pull-package-deps is specified.'
|
||||||
default: false
|
default: false
|
||||||
runs:
|
runs:
|
||||||
using: 'composite'
|
using: 'composite'
|
||||||
|
@ -62,12 +65,12 @@ runs:
|
||||||
key: "${{ runner.os }}-node-cache-${{ inputs.pull-package-deps }}-${{ hashFiles( 'pnpm-lock.yaml' ) }}"
|
key: "${{ runner.os }}-node-cache-${{ inputs.pull-package-deps }}-${{ hashFiles( 'pnpm-lock.yaml' ) }}"
|
||||||
restore-keys: '${{ runner.os }}-node-cache-${{ inputs.pull-package-deps }}-'
|
restore-keys: '${{ runner.os }}-node-cache-${{ inputs.pull-package-deps }}-'
|
||||||
- name: 'Cache Composer Dependencies'
|
- name: 'Cache Composer Dependencies'
|
||||||
if: ${{ inputs.pull-package-deps != 'false' }}
|
if: ${{ inputs.pull-package-deps != 'false' || inputs.pull-package-composer-deps != 'false' }}
|
||||||
uses: 'actions/cache@ab5e6d0c87105b4c9c2047343972218f562e4319'
|
uses: 'actions/cache@ab5e6d0c87105b4c9c2047343972218f562e4319'
|
||||||
with:
|
with:
|
||||||
path: '~/.cache/composer/files'
|
path: '~/.cache/composer/files'
|
||||||
key: "${{ runner.os }}-composer-${{ inputs.pull-package-deps }}-${{ hashFiles( 'packages/*/*/composer.lock', 'plugins/*/composer.lock' ) }}"
|
key: "${{ runner.os }}-composer-${{ ( inputs.pull-package-deps != 'false' && inputs.pull-package-deps ) || inputs.pull-package-composer-deps }}-${{ hashFiles( 'packages/*/*/composer.lock', 'plugins/*/composer.lock' ) }}"
|
||||||
restore-keys: '${{ runner.os }}-composer-${{ inputs.pull-package-deps }}-'
|
restore-keys: "${{ runner.os }}-composer-${{ ( inputs.pull-package-deps != 'false' && inputs.pull-package-deps ) || inputs.pull-package-composer-deps }}-"
|
||||||
- name: 'Cache: playwright downloads'
|
- name: 'Cache: playwright downloads'
|
||||||
if: ${{ inputs.pull-playwright-cache != 'false' }}
|
if: ${{ inputs.pull-playwright-cache != 'false' }}
|
||||||
uses: 'actions/cache@ab5e6d0c87105b4c9c2047343972218f562e4319'
|
uses: 'actions/cache@ab5e6d0c87105b4c9c2047343972218f562e4319'
|
||||||
|
|
|
@ -1,14 +1,20 @@
|
||||||
name: Run lint checks potentially affecting projects across the monorepo
|
name: Run lint checks potentially affecting projects across the monorepo
|
||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
|
paths-ignore:
|
||||||
|
- '**/changelog/**'
|
||||||
branches:
|
branches:
|
||||||
- 'trunk'
|
- 'trunk'
|
||||||
|
|
||||||
concurrency:
|
concurrency:
|
||||||
group: changelogger-${{ github.event_name }}-${{ github.ref }}
|
group: changelogger-${{ github.event_name }}-${{ github.ref }}
|
||||||
cancel-in-progress: true
|
cancel-in-progress: true
|
||||||
|
|
||||||
permissions: {}
|
permissions: {}
|
||||||
|
|
||||||
|
env:
|
||||||
|
FORCE_COLOR: 1
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
changelogger_used:
|
changelogger_used:
|
||||||
name: Changelogger use
|
name: Changelogger use
|
||||||
|
@ -24,6 +30,9 @@ jobs:
|
||||||
|
|
||||||
- name: Setup WooCommerce Monorepo
|
- name: Setup WooCommerce Monorepo
|
||||||
uses: ./.github/actions/setup-woocommerce-monorepo
|
uses: ./.github/actions/setup-woocommerce-monorepo
|
||||||
|
with:
|
||||||
|
# The package has majority of composer-deps, therefore referencing it
|
||||||
|
pull-package-composer-deps: '@woocommerce/plugin-woocommerce'
|
||||||
|
|
||||||
- name: Check change files are touched for touched projects
|
- name: Check change files are touched for touched projects
|
||||||
env:
|
env:
|
||||||
|
@ -32,4 +41,4 @@ jobs:
|
||||||
run: php tools/monorepo/check-changelogger-use.php --debug "$BASE" "$HEAD"
|
run: php tools/monorepo/check-changelogger-use.php --debug "$BASE" "$HEAD"
|
||||||
|
|
||||||
- name: Run changelog validation
|
- name: Run changelog validation
|
||||||
run: pnpm -r changelog validate
|
run: pnpm --recursive --parallel --stream changelog validate
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
Significance: patch
|
||||||
|
Type: dev
|
||||||
|
|
||||||
|
CI: liverage composer packages cache in lint monorepo job
|
|
@ -29,7 +29,7 @@
|
||||||
"build": "pnpm --if-present --workspace-concurrency=Infinity --stream --filter=\"$npm_package_name...\" '/^build:project:.*$/'",
|
"build": "pnpm --if-present --workspace-concurrency=Infinity --stream --filter=\"$npm_package_name...\" '/^build:project:.*$/'",
|
||||||
"build:project": "pnpm --if-present '/^build:project:.*$/'",
|
"build:project": "pnpm --if-present '/^build:project:.*$/'",
|
||||||
"build:project:typescript": "wireit",
|
"build:project:typescript": "wireit",
|
||||||
"changelog": "composer install && composer exec -- changelogger",
|
"changelog": "XDEBUG_MODE=off composer install --quiet && composer exec -- changelogger",
|
||||||
"lint": "pnpm --if-present '/^lint:lang:.*$/'",
|
"lint": "pnpm --if-present '/^lint:lang:.*$/'",
|
||||||
"lint:fix": "pnpm --if-present '/^lint:fix:lang:.*$/'",
|
"lint:fix": "pnpm --if-present '/^lint:fix:lang:.*$/'",
|
||||||
"lint:fix:lang:js": "eslint src --fix",
|
"lint:fix:lang:js": "eslint src --fix",
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
Significance: patch
|
||||||
|
Type: dev
|
||||||
|
|
||||||
|
CI: liverage composer packages cache in lint monorepo job
|
|
@ -39,7 +39,7 @@
|
||||||
"build:project:bundle": "wireit",
|
"build:project:bundle": "wireit",
|
||||||
"build:project:cjs": "wireit",
|
"build:project:cjs": "wireit",
|
||||||
"build:project:esm": "wireit",
|
"build:project:esm": "wireit",
|
||||||
"changelog": "composer install && composer exec -- changelogger",
|
"changelog": "XDEBUG_MODE=off composer install --quiet && composer exec -- changelogger",
|
||||||
"lint": "pnpm --if-present '/^lint:lang:.*$/'",
|
"lint": "pnpm --if-present '/^lint:lang:.*$/'",
|
||||||
"lint:fix": "pnpm --if-present '/^lint:fix:lang:.*$/'",
|
"lint:fix": "pnpm --if-present '/^lint:fix:lang:.*$/'",
|
||||||
"lint:fix:lang:js": "eslint src --fix",
|
"lint:fix:lang:js": "eslint src --fix",
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
Significance: patch
|
||||||
|
Type: dev
|
||||||
|
|
||||||
|
CI: liverage composer packages cache in lint monorepo job
|
|
@ -37,7 +37,7 @@
|
||||||
"build:project:bundle": "wireit",
|
"build:project:bundle": "wireit",
|
||||||
"build:project:cjs": "wireit",
|
"build:project:cjs": "wireit",
|
||||||
"build:project:esm": "wireit",
|
"build:project:esm": "wireit",
|
||||||
"changelog": "composer install && composer exec -- changelogger",
|
"changelog": "XDEBUG_MODE=off composer install --quiet && composer exec -- changelogger",
|
||||||
"lint": "pnpm --if-present '/^lint:lang:.*$/'",
|
"lint": "pnpm --if-present '/^lint:lang:.*$/'",
|
||||||
"lint:fix": "pnpm --if-present '/^lint:fix:lang:.*$/'",
|
"lint:fix": "pnpm --if-present '/^lint:fix:lang:.*$/'",
|
||||||
"lint:fix:lang:js": "eslint src --fix",
|
"lint:fix:lang:js": "eslint src --fix",
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
Significance: patch
|
||||||
|
Type: dev
|
||||||
|
|
||||||
|
CI: liverage composer packages cache in lint monorepo job
|
|
@ -33,7 +33,7 @@
|
||||||
"build": "pnpm --if-present --workspace-concurrency=Infinity --stream --filter=\"$npm_package_name...\" '/^build:project:.*$/'",
|
"build": "pnpm --if-present --workspace-concurrency=Infinity --stream --filter=\"$npm_package_name...\" '/^build:project:.*$/'",
|
||||||
"build:project": "pnpm --if-present '/^build:project:.*$/'",
|
"build:project": "pnpm --if-present '/^build:project:.*$/'",
|
||||||
"build:project:typescript": "wireit",
|
"build:project:typescript": "wireit",
|
||||||
"changelog": "composer install && composer exec -- changelogger",
|
"changelog": "XDEBUG_MODE=off composer install --quiet && composer exec -- changelogger",
|
||||||
"lint": "pnpm --if-present '/^lint:lang:.*$/'",
|
"lint": "pnpm --if-present '/^lint:lang:.*$/'",
|
||||||
"lint:fix": "pnpm --if-present '/^lint:fix:lang:.*$/'",
|
"lint:fix": "pnpm --if-present '/^lint:fix:lang:.*$/'",
|
||||||
"lint:fix:lang:js": "eslint src --fix",
|
"lint:fix:lang:js": "eslint src --fix",
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
Significance: patch
|
||||||
|
Type: dev
|
||||||
|
|
||||||
|
CI: liverage composer packages cache in lint monorepo job
|
|
@ -36,7 +36,7 @@
|
||||||
"build:project:bundle": "wireit",
|
"build:project:bundle": "wireit",
|
||||||
"build:project:cjs": "wireit",
|
"build:project:cjs": "wireit",
|
||||||
"build:project:esm": "wireit",
|
"build:project:esm": "wireit",
|
||||||
"changelog": "composer install && composer exec -- changelogger",
|
"changelog": "XDEBUG_MODE=off composer install --quiet && composer exec -- changelogger",
|
||||||
"lint": "pnpm --if-present '/^lint:lang:.*$/'",
|
"lint": "pnpm --if-present '/^lint:lang:.*$/'",
|
||||||
"lint:fix": "pnpm --if-present '/^lint:fix:lang:.*$/'",
|
"lint:fix": "pnpm --if-present '/^lint:fix:lang:.*$/'",
|
||||||
"lint:fix:lang:js": "eslint src --fix",
|
"lint:fix:lang:js": "eslint src --fix",
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
Significance: patch
|
||||||
|
Type: dev
|
||||||
|
|
||||||
|
CI: liverage composer packages cache in lint monorepo job
|
|
@ -41,7 +41,7 @@
|
||||||
"build:project:bundle": "wireit",
|
"build:project:bundle": "wireit",
|
||||||
"build:project:cjs": "wireit",
|
"build:project:cjs": "wireit",
|
||||||
"build:project:esm": "wireit",
|
"build:project:esm": "wireit",
|
||||||
"changelog": "composer install && composer exec -- changelogger",
|
"changelog": "XDEBUG_MODE=off composer install --quiet && composer exec -- changelogger",
|
||||||
"lint": "pnpm --if-present '/^lint:lang:.*$/'",
|
"lint": "pnpm --if-present '/^lint:lang:.*$/'",
|
||||||
"lint:fix": "pnpm --if-present '/^lint:fix:lang:.*$/'",
|
"lint:fix": "pnpm --if-present '/^lint:fix:lang:.*$/'",
|
||||||
"lint:fix:lang:js": "eslint --ext=js,ts,tsx src --fix",
|
"lint:fix:lang:js": "eslint --ext=js,ts,tsx src --fix",
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
Significance: patch
|
||||||
|
Type: dev
|
||||||
|
|
||||||
|
CI: liverage composer packages cache in lint monorepo job
|
|
@ -10,7 +10,7 @@
|
||||||
"pnpm": "9.1.3"
|
"pnpm": "9.1.3"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"changelog": "composer install && composer exec -- changelogger"
|
"changelog": "XDEBUG_MODE=off composer install --quiet && composer exec -- changelogger"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
Significance: patch
|
||||||
|
Type: dev
|
||||||
|
|
||||||
|
CI: liverage composer packages cache in lint monorepo job
|
|
@ -18,7 +18,7 @@
|
||||||
"url": "https://github.com/woocommerce/woocommerce/issues"
|
"url": "https://github.com/woocommerce/woocommerce/issues"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"changelog": "composer install && composer exec -- changelogger"
|
"changelog": "XDEBUG_MODE=off composer install --quiet && composer exec -- changelogger"
|
||||||
},
|
},
|
||||||
"homepage": "https://github.com/woocommerce/woocommerce/tree/trunk/packages/js/create-woo-extension#readme",
|
"homepage": "https://github.com/woocommerce/woocommerce/tree/trunk/packages/js/create-woo-extension#readme",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
Significance: patch
|
||||||
|
Type: dev
|
||||||
|
|
||||||
|
CI: liverage composer packages cache in lint monorepo job
|
|
@ -35,7 +35,7 @@
|
||||||
"build:project": "pnpm --if-present '/^build:project:.*$/'",
|
"build:project": "pnpm --if-present '/^build:project:.*$/'",
|
||||||
"build:project:cjs": "wireit",
|
"build:project:cjs": "wireit",
|
||||||
"build:project:esm": "wireit",
|
"build:project:esm": "wireit",
|
||||||
"changelog": "composer install && composer exec -- changelogger",
|
"changelog": "XDEBUG_MODE=off composer install --quiet && composer exec -- changelogger",
|
||||||
"lint": "pnpm --if-present '/^lint:lang:.*$/'",
|
"lint": "pnpm --if-present '/^lint:lang:.*$/'",
|
||||||
"lint:fix": "pnpm --if-present '/^lint:fix:lang:.*$/'",
|
"lint:fix": "pnpm --if-present '/^lint:fix:lang:.*$/'",
|
||||||
"lint:fix:lang:js": "eslint src --fix",
|
"lint:fix:lang:js": "eslint src --fix",
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
Significance: patch
|
||||||
|
Type: dev
|
||||||
|
|
||||||
|
CI: liverage composer packages cache in lint monorepo job
|
|
@ -35,7 +35,7 @@
|
||||||
"build:project": "pnpm --if-present '/^build:project:.*$/'",
|
"build:project": "pnpm --if-present '/^build:project:.*$/'",
|
||||||
"build:project:cjs": "wireit",
|
"build:project:cjs": "wireit",
|
||||||
"build:project:esm": "wireit",
|
"build:project:esm": "wireit",
|
||||||
"changelog": "composer install && composer exec -- changelogger",
|
"changelog": "XDEBUG_MODE=off composer install --quiet && composer exec -- changelogger",
|
||||||
"lint": "pnpm --if-present '/^lint:lang:.*$/'",
|
"lint": "pnpm --if-present '/^lint:lang:.*$/'",
|
||||||
"lint:fix": "pnpm --if-present '/^lint:fix:lang:.*$/'",
|
"lint:fix": "pnpm --if-present '/^lint:fix:lang:.*$/'",
|
||||||
"lint:fix:lang:js": "eslint src --fix",
|
"lint:fix:lang:js": "eslint src --fix",
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
Significance: patch
|
||||||
|
Type: dev
|
||||||
|
|
||||||
|
CI: liverage composer packages cache in lint monorepo job
|
|
@ -36,7 +36,7 @@
|
||||||
"build:project:bundle": "wireit",
|
"build:project:bundle": "wireit",
|
||||||
"build:project:cjs": "wireit",
|
"build:project:cjs": "wireit",
|
||||||
"build:project:esm": "wireit",
|
"build:project:esm": "wireit",
|
||||||
"changelog": "composer install && composer exec -- changelogger",
|
"changelog": "XDEBUG_MODE=off composer install --quiet && composer exec -- changelogger",
|
||||||
"lint": "pnpm --if-present '/^lint:lang:.*$/'",
|
"lint": "pnpm --if-present '/^lint:lang:.*$/'",
|
||||||
"lint:fix": "pnpm --if-present '/^lint:fix:lang:.*$/'",
|
"lint:fix": "pnpm --if-present '/^lint:fix:lang:.*$/'",
|
||||||
"lint:fix:lang:js": "eslint src --fix",
|
"lint:fix:lang:js": "eslint src --fix",
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
Significance: patch
|
||||||
|
Type: dev
|
||||||
|
|
||||||
|
CI: liverage composer packages cache in lint monorepo job
|
|
@ -34,7 +34,7 @@
|
||||||
"build:project": "pnpm --if-present '/^build:project:.*$/'",
|
"build:project": "pnpm --if-present '/^build:project:.*$/'",
|
||||||
"build:project:cjs": "wireit",
|
"build:project:cjs": "wireit",
|
||||||
"build:project:esm": "wireit",
|
"build:project:esm": "wireit",
|
||||||
"changelog": "composer install && composer exec -- changelogger",
|
"changelog": "XDEBUG_MODE=off composer install --quiet && composer exec -- changelogger",
|
||||||
"lint": "pnpm --if-present '/^lint:lang:.*$/'",
|
"lint": "pnpm --if-present '/^lint:lang:.*$/'",
|
||||||
"lint:fix": "pnpm --if-present '/^lint:fix:lang:.*$/'",
|
"lint:fix": "pnpm --if-present '/^lint:fix:lang:.*$/'",
|
||||||
"lint:fix:lang:js": "eslint src --fix",
|
"lint:fix:lang:js": "eslint src --fix",
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
Significance: patch
|
||||||
|
Type: dev
|
||||||
|
|
||||||
|
CI: liverage composer packages cache in lint monorepo job
|
|
@ -67,7 +67,7 @@
|
||||||
"build:project": "pnpm --if-present '/^build:project:.*$/'",
|
"build:project": "pnpm --if-present '/^build:project:.*$/'",
|
||||||
"build:project:cjs": "wireit",
|
"build:project:cjs": "wireit",
|
||||||
"build:project:esm": "wireit",
|
"build:project:esm": "wireit",
|
||||||
"changelog": "composer install && composer exec -- changelogger",
|
"changelog": "XDEBUG_MODE=off composer install --quiet && composer exec -- changelogger",
|
||||||
"lint": "pnpm --if-present '/^lint:lang:.*$/'",
|
"lint": "pnpm --if-present '/^lint:lang:.*$/'",
|
||||||
"lint:fix": "pnpm --if-present '/^lint:fix:lang:.*$/'",
|
"lint:fix": "pnpm --if-present '/^lint:fix:lang:.*$/'",
|
||||||
"lint:fix:lang:js": "eslint src --fix",
|
"lint:fix:lang:js": "eslint src --fix",
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
Significance: patch
|
||||||
|
Type: dev
|
||||||
|
|
||||||
|
CI: liverage composer packages cache in lint monorepo job
|
|
@ -45,7 +45,7 @@
|
||||||
"wireit": "0.14.3"
|
"wireit": "0.14.3"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"changelog": "composer install && composer exec -- changelogger",
|
"changelog": "XDEBUG_MODE=off composer install --quiet && composer exec -- changelogger",
|
||||||
"lint": "pnpm --if-present '/^lint:lang:.*$/'",
|
"lint": "pnpm --if-present '/^lint:lang:.*$/'",
|
||||||
"lint:fix": "pnpm --if-present '/^lint:fix:lang:.*$/'",
|
"lint:fix": "pnpm --if-present '/^lint:fix:lang:.*$/'",
|
||||||
"lint:fix:lang:js": "eslint src --fix",
|
"lint:fix:lang:js": "eslint src --fix",
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
Significance: patch
|
||||||
|
Type: dev
|
||||||
|
|
||||||
|
CI: liverage composer packages cache in lint monorepo job
|
|
@ -41,7 +41,7 @@
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"changelog": "composer install && composer exec -- changelogger",
|
"changelog": "XDEBUG_MODE=off composer install --quiet && composer exec -- changelogger",
|
||||||
"lint": "pnpm --if-present '/^lint:lang:.*$/'",
|
"lint": "pnpm --if-present '/^lint:lang:.*$/'",
|
||||||
"lint:fix": "pnpm --if-present '/^lint:fix:lang:.*$/'",
|
"lint:fix": "pnpm --if-present '/^lint:fix:lang:.*$/'",
|
||||||
"lint:fix:lang:js": "eslint ./rules ./configs --fix",
|
"lint:fix:lang:js": "eslint ./rules ./configs --fix",
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
Significance: patch
|
||||||
|
Type: dev
|
||||||
|
|
||||||
|
CI: liverage composer packages cache in lint monorepo job
|
|
@ -95,7 +95,7 @@
|
||||||
"build:project:bundle": "wireit",
|
"build:project:bundle": "wireit",
|
||||||
"build:project:cjs": "wireit",
|
"build:project:cjs": "wireit",
|
||||||
"build:project:esm": "wireit",
|
"build:project:esm": "wireit",
|
||||||
"changelog": "composer install && composer exec -- changelogger",
|
"changelog": "XDEBUG_MODE=off composer install --quiet && composer exec -- changelogger",
|
||||||
"lint": "pnpm --if-present '/^lint:lang:.*$/'",
|
"lint": "pnpm --if-present '/^lint:lang:.*$/'",
|
||||||
"lint:fix": "pnpm --if-present '/^lint:fix:lang:.*$/'",
|
"lint:fix": "pnpm --if-present '/^lint:fix:lang:.*$/'",
|
||||||
"lint:fix:lang:js": "eslint src --fix",
|
"lint:fix:lang:js": "eslint src --fix",
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
Significance: patch
|
||||||
|
Type: dev
|
||||||
|
|
||||||
|
CI: liverage composer packages cache in lint monorepo job
|
|
@ -35,7 +35,7 @@
|
||||||
"build:project": "pnpm --if-present '/^build:project:.*$/'",
|
"build:project": "pnpm --if-present '/^build:project:.*$/'",
|
||||||
"build:project:cjs": "wireit",
|
"build:project:cjs": "wireit",
|
||||||
"build:project:esm": "wireit",
|
"build:project:esm": "wireit",
|
||||||
"changelog": "composer install && composer exec -- changelogger",
|
"changelog": "XDEBUG_MODE=off composer install --quiet && composer exec -- changelogger",
|
||||||
"lint": "pnpm --if-present '/^lint:lang:.*$/'",
|
"lint": "pnpm --if-present '/^lint:lang:.*$/'",
|
||||||
"lint:fix": "pnpm --if-present '/^lint:fix:lang:.*$/'",
|
"lint:fix": "pnpm --if-present '/^lint:fix:lang:.*$/'",
|
||||||
"lint:fix:lang:js": "eslint src --fix",
|
"lint:fix:lang:js": "eslint src --fix",
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
Significance: patch
|
||||||
|
Type: dev
|
||||||
|
|
||||||
|
CI: liverage composer packages cache in lint monorepo job
|
|
@ -43,7 +43,7 @@
|
||||||
"build:project": "pnpm --if-present '/^build:project:.*$/'",
|
"build:project": "pnpm --if-present '/^build:project:.*$/'",
|
||||||
"build:project:cjs": "wireit",
|
"build:project:cjs": "wireit",
|
||||||
"build:project:esm": "wireit",
|
"build:project:esm": "wireit",
|
||||||
"changelog": "composer install && composer exec -- changelogger",
|
"changelog": "XDEBUG_MODE=off composer install --quiet && composer exec -- changelogger",
|
||||||
"lint": "pnpm --if-present '/^lint:lang:.*$/'",
|
"lint": "pnpm --if-present '/^lint:lang:.*$/'",
|
||||||
"lint:fix": "pnpm --if-present '/^lint:fix:lang:.*$/'",
|
"lint:fix": "pnpm --if-present '/^lint:fix:lang:.*$/'",
|
||||||
"lint:fix:lang:js": "eslint src --fix",
|
"lint:fix:lang:js": "eslint src --fix",
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
Significance: patch
|
||||||
|
Type: dev
|
||||||
|
|
||||||
|
CI: liverage composer packages cache in lint monorepo job
|
|
@ -18,7 +18,7 @@
|
||||||
"url": "https://github.com/woocommerce/woocommerce/issues"
|
"url": "https://github.com/woocommerce/woocommerce/issues"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"changelog": "composer install && composer exec -- changelogger"
|
"changelog": "XDEBUG_MODE=off composer install --quiet && composer exec -- changelogger"
|
||||||
},
|
},
|
||||||
"homepage": "https://github.com/woocommerce/woocommerce/tree/trunk/packages/js/extend-cart-checkout-block#readme",
|
"homepage": "https://github.com/woocommerce/woocommerce/tree/trunk/packages/js/extend-cart-checkout-block#readme",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
Significance: patch
|
||||||
|
Type: dev
|
||||||
|
|
||||||
|
CI: liverage composer packages cache in lint monorepo job
|
|
@ -32,7 +32,7 @@
|
||||||
"build:project": "pnpm --if-present '/^build:project:.*$/'",
|
"build:project": "pnpm --if-present '/^build:project:.*$/'",
|
||||||
"build:project:cjs": "wireit",
|
"build:project:cjs": "wireit",
|
||||||
"build:project:esm": "wireit",
|
"build:project:esm": "wireit",
|
||||||
"changelog": "composer install && composer exec -- changelogger",
|
"changelog": "XDEBUG_MODE=off composer install --quiet && composer exec -- changelogger",
|
||||||
"lint": "pnpm --if-present '/^lint:lang:.*$/'",
|
"lint": "pnpm --if-present '/^lint:lang:.*$/'",
|
||||||
"lint:fix": "pnpm --if-present '/^lint:fix:lang:.*$/'",
|
"lint:fix": "pnpm --if-present '/^lint:fix:lang:.*$/'",
|
||||||
"lint:fix:lang:js": "eslint src --fix",
|
"lint:fix:lang:js": "eslint src --fix",
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
Significance: patch
|
||||||
|
Type: dev
|
||||||
|
|
||||||
|
CI: liverage composer packages cache in lint monorepo job
|
|
@ -30,7 +30,7 @@
|
||||||
"build:project": "pnpm --if-present '/^build:project:.*$/'",
|
"build:project": "pnpm --if-present '/^build:project:.*$/'",
|
||||||
"build:project:cjs": "wireit",
|
"build:project:cjs": "wireit",
|
||||||
"build:project:esm": "wireit",
|
"build:project:esm": "wireit",
|
||||||
"changelog": "composer install && composer exec -- changelogger",
|
"changelog": "XDEBUG_MODE=off composer install --quiet && composer exec -- changelogger",
|
||||||
"lint": "pnpm --if-present '/^lint:lang:.*$/'",
|
"lint": "pnpm --if-present '/^lint:lang:.*$/'",
|
||||||
"lint:fix": "pnpm --if-present '/^lint:fix:lang:.*$/'",
|
"lint:fix": "pnpm --if-present '/^lint:fix:lang:.*$/'",
|
||||||
"lint:fix:lang:js": "eslint src --fix",
|
"lint:fix:lang:js": "eslint src --fix",
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
Significance: patch
|
||||||
|
Type: dev
|
||||||
|
|
||||||
|
CI: liverage composer packages cache in lint monorepo job
|
|
@ -35,7 +35,7 @@
|
||||||
"build:project": "pnpm --if-present '/^build:project:.*$/'",
|
"build:project": "pnpm --if-present '/^build:project:.*$/'",
|
||||||
"build:project:cjs": "wireit",
|
"build:project:cjs": "wireit",
|
||||||
"build:project:esm": "wireit",
|
"build:project:esm": "wireit",
|
||||||
"changelog": "composer install && composer exec -- changelogger",
|
"changelog": "XDEBUG_MODE=off composer install --quiet && composer exec -- changelogger",
|
||||||
"lint": "pnpm --if-present '/^lint:lang:.*$/'",
|
"lint": "pnpm --if-present '/^lint:lang:.*$/'",
|
||||||
"lint:fix": "pnpm --if-present '/^lint:fix:lang:.*$/'",
|
"lint:fix": "pnpm --if-present '/^lint:fix:lang:.*$/'",
|
||||||
"lint:fix:lang:js": "eslint src --fix",
|
"lint:fix:lang:js": "eslint src --fix",
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
Significance: patch
|
||||||
|
Type: dev
|
||||||
|
|
||||||
|
CI: liverage composer packages cache in lint monorepo job
|
|
@ -36,7 +36,7 @@
|
||||||
"build:project": "pnpm --if-present '/^build:project:.*$/'",
|
"build:project": "pnpm --if-present '/^build:project:.*$/'",
|
||||||
"build:project:cjs": "wireit",
|
"build:project:cjs": "wireit",
|
||||||
"build:project:esm": "wireit",
|
"build:project:esm": "wireit",
|
||||||
"changelog": "composer install && composer exec -- changelogger",
|
"changelog": "XDEBUG_MODE=off composer install --quiet && composer exec -- changelogger",
|
||||||
"lint": "pnpm --if-present '/^lint:lang:.*$/'",
|
"lint": "pnpm --if-present '/^lint:lang:.*$/'",
|
||||||
"lint:fix": "pnpm --if-present '/^lint:fix:lang:.*$/'",
|
"lint:fix": "pnpm --if-present '/^lint:fix:lang:.*$/'",
|
||||||
"lint:fix:lang:js": "eslint src --fix",
|
"lint:fix:lang:js": "eslint src --fix",
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
Significance: patch
|
||||||
|
Type: dev
|
||||||
|
|
||||||
|
CI: liverage composer packages cache in lint monorepo job
|
|
@ -40,7 +40,7 @@
|
||||||
"build:project": "pnpm --if-present '/^build:project:.*$/'",
|
"build:project": "pnpm --if-present '/^build:project:.*$/'",
|
||||||
"build:project:cjs": "wireit",
|
"build:project:cjs": "wireit",
|
||||||
"build:project:esm": "wireit",
|
"build:project:esm": "wireit",
|
||||||
"changelog": "composer install && composer exec -- changelogger",
|
"changelog": "XDEBUG_MODE=off composer install --quiet && composer exec -- changelogger",
|
||||||
"lint": "pnpm --if-present '/^lint:lang:.*$/'",
|
"lint": "pnpm --if-present '/^lint:lang:.*$/'",
|
||||||
"lint:fix": "pnpm --if-present '/^lint:fix:lang:.*$/'",
|
"lint:fix": "pnpm --if-present '/^lint:fix:lang:.*$/'",
|
||||||
"lint:fix:lang:js": "eslint src --fix",
|
"lint:fix:lang:js": "eslint src --fix",
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
Significance: patch
|
||||||
|
Type: dev
|
||||||
|
|
||||||
|
CI: liverage composer packages cache in lint monorepo job
|
|
@ -37,7 +37,7 @@
|
||||||
"build:project:bundle": "wireit",
|
"build:project:bundle": "wireit",
|
||||||
"build:project:cjs": "wireit",
|
"build:project:cjs": "wireit",
|
||||||
"build:project:esm": "wireit",
|
"build:project:esm": "wireit",
|
||||||
"changelog": "composer install && composer exec -- changelogger",
|
"changelog": "XDEBUG_MODE=off composer install --quiet && composer exec -- changelogger",
|
||||||
"lint": "pnpm --if-present '/^lint:lang:.*$/'",
|
"lint": "pnpm --if-present '/^lint:lang:.*$/'",
|
||||||
"lint:fix": "pnpm --if-present '/^lint:fix:lang:.*$/'",
|
"lint:fix": "pnpm --if-present '/^lint:fix:lang:.*$/'",
|
||||||
"lint:fix:lang:js": "eslint src --fix",
|
"lint:fix:lang:js": "eslint src --fix",
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
Significance: patch
|
||||||
|
Type: dev
|
||||||
|
|
||||||
|
CI: liverage composer packages cache in lint monorepo job
|
|
@ -137,7 +137,7 @@
|
||||||
"build:project:bundle": "wireit",
|
"build:project:bundle": "wireit",
|
||||||
"build:project:cjs": "wireit",
|
"build:project:cjs": "wireit",
|
||||||
"build:project:esm": "wireit",
|
"build:project:esm": "wireit",
|
||||||
"changelog": "composer install && composer exec -- changelogger",
|
"changelog": "XDEBUG_MODE=off composer install --quiet && composer exec -- changelogger",
|
||||||
"lint": "pnpm --if-present '/^lint:lang:.*$/'",
|
"lint": "pnpm --if-present '/^lint:lang:.*$/'",
|
||||||
"lint:fix": "pnpm --if-present '/^lint:fix:lang:.*$/'",
|
"lint:fix": "pnpm --if-present '/^lint:fix:lang:.*$/'",
|
||||||
"lint:fix:lang:js": "eslint src --fix",
|
"lint:fix:lang:js": "eslint src --fix",
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
Significance: patch
|
||||||
|
Type: dev
|
||||||
|
|
||||||
|
CI: liverage composer packages cache in lint monorepo job
|
|
@ -34,7 +34,7 @@
|
||||||
"build:project": "pnpm --if-present '/^build:project:.*$/'",
|
"build:project": "pnpm --if-present '/^build:project:.*$/'",
|
||||||
"build:project:cjs": "wireit",
|
"build:project:cjs": "wireit",
|
||||||
"build:project:esm": "wireit",
|
"build:project:esm": "wireit",
|
||||||
"changelog": "composer install && composer exec -- changelogger",
|
"changelog": "XDEBUG_MODE=off composer install --quiet && composer exec -- changelogger",
|
||||||
"lint": "pnpm --if-present '/^lint:lang:.*$/'",
|
"lint": "pnpm --if-present '/^lint:lang:.*$/'",
|
||||||
"lint:fix": "pnpm --if-present '/^lint:fix:lang:.*$/'",
|
"lint:fix": "pnpm --if-present '/^lint:fix:lang:.*$/'",
|
||||||
"lint:fix:lang:js": "eslint src --fix",
|
"lint:fix:lang:js": "eslint src --fix",
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
Significance: patch
|
||||||
|
Type: dev
|
||||||
|
|
||||||
|
CI: liverage composer packages cache in lint monorepo job
|
|
@ -41,7 +41,7 @@
|
||||||
"build:project": "pnpm --if-present '/^build:project:.*$/'",
|
"build:project": "pnpm --if-present '/^build:project:.*$/'",
|
||||||
"build:project:cjs": "wireit",
|
"build:project:cjs": "wireit",
|
||||||
"build:project:esm": "wireit",
|
"build:project:esm": "wireit",
|
||||||
"changelog": "composer install && composer exec -- changelogger",
|
"changelog": "XDEBUG_MODE=off composer install --quiet && composer exec -- changelogger",
|
||||||
"lint": "pnpm --if-present '/^lint:lang:.*$/'",
|
"lint": "pnpm --if-present '/^lint:lang:.*$/'",
|
||||||
"lint:fix": "pnpm --if-present '/^lint:fix:lang:.*$/'",
|
"lint:fix": "pnpm --if-present '/^lint:fix:lang:.*$/'",
|
||||||
"lint:fix:lang:js": "eslint src --fix",
|
"lint:fix:lang:js": "eslint src --fix",
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
Significance: patch
|
||||||
|
Type: dev
|
||||||
|
|
||||||
|
CI: liverage composer packages cache in lint monorepo job
|
|
@ -3,7 +3,7 @@
|
||||||
"description": "Remote specs testing suite",
|
"description": "Remote specs testing suite",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"changelog": "composer install && composer exec -- changelogger"
|
"changelog": "XDEBUG_MODE=off composer install --quiet && composer exec -- changelogger"
|
||||||
},
|
},
|
||||||
"license": "GPL-3.0-or-later",
|
"license": "GPL-3.0-or-later",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
Loading…
Reference in New Issue