Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update lerna to v7 and migrate to npm workspace #1561

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
9475951
chore: update lerna to v7 and migrate to npm workspace
chigia001 Jul 6, 2023
7226771
chore: update minimum version of npm in github action
chigia001 Jul 6, 2023
0da436e
chore: increase max_old_space_size to prevent gc
chigia001 Jul 6, 2023
8827a44
Merge branch 'main' of github.com:open-telemetry/opentelemetry-js-con…
chigia001 Jul 6, 2023
4b7572a
chore: increase max_old_space_size only on node@18
chigia001 Jul 6, 2023
0caf8a9
chore: set concurrency to 5 for node@18
chigia001 Jul 6, 2023
650e2d9
Revert "chore: set concurrency to 5 for node@18"
chigia001 Jul 6, 2023
9ee604d
chore: set max_old_space_size for all node version
chigia001 Jul 6, 2023
3f1698d
chore: add nx.json to cache some task
chigia001 Jul 10, 2023
5f9f67e
Revert "chore: add nx.json to cache some task"
chigia001 Jul 10, 2023
2e07402
chore: replace custom node_modules cache with standard setup-node cache
chigia001 Jul 11, 2023
a547b2e
chore: replace with single glob pattern
chigia001 Jul 11, 2023
e72fd21
chore: update multiline yml syntax
chigia001 Jul 11, 2023
3238be3
Merge branch 'main' into feat-learna-bootstrap-deprecate
Flarna Jul 11, 2023
17a92f0
Merge branch 'main' into feat-learna-bootstrap-deprecate
chigia001 Jul 12, 2023
9ffd5fb
chore: remove lerna:link in tav
chigia001 Jul 13, 2023
27a1779
Merge branch 'main' into feat-learna-bootstrap-deprecate
chigia001 Jul 15, 2023
eb22187
Merge branch 'main' into feat-learna-bootstrap-deprecate
chigia001 Jul 15, 2023
a623a08
Merge branch 'main' into feat-learna-bootstrap-deprecate
chigia001 Jul 16, 2023
b6f9770
Merge branch 'main' into feat-learna-bootstrap-deprecate
chigia001 Jul 21, 2023
0e3eca4
chore: --legacy-bundling
chigia001 Jul 21, 2023
64db183
chore: --global-style
chigia001 Jul 21, 2023
f2091cf
chore: --install-strategy=linked
chigia001 Jul 21, 2023
709353d
remove prepare script
chigia001 Jul 21, 2023
075c668
revert
chigia001 Jul 21, 2023
00c98b5
chore: update @babel/core to test Garbage Collector issue
chigia001 Jul 24, 2023
aedc903
Merge branch 'feat-learna-bootstrap-deprecate' of github.com:chigia00…
chigia001 Jul 24, 2023
24fe745
chore: add back missing codecov for mongo
chigia001 Jul 24, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,5 @@ jobs:
if: steps.cache.outputs.cache-hit != 'true'
run: |
npm install --only=dev --ignore-scripts
npx lerna bootstrap --no-ci --hoist --nohoist='zone.js' --nohoist='gts' --ignore-scripts -- --only=dev
- name: Lint
run: npm run lint
1 change: 0 additions & 1 deletion .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ jobs:
- name: Build Packages
run: |
npm install
npx lerna bootstrap --no-ci

- uses: google-github-actions/release-please-action@v3
id: release
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/test-all-versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,6 @@ jobs:
if: matrix.node == '16'
run: npm config set legacy-peer-deps=true
- name: Install Root Dependencies
run: npm install --ignore-scripts
- name: Bootstrap Dependencies
run: npx lerna bootstrap --no-ci --hoist --nohoist='zone.js' --nohoist='mocha' --nohoist='ts-mocha'
run: npm install
- name: Run test-all-versions
run: npx lerna run test-all-versions ${{ inputs.lerna-args }} ${{ matrix.lerna-extra-args }} --stream --concurrency 1
76 changes: 30 additions & 46 deletions .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,35 +118,26 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: 'npm'
cache-dependency-path: |
package.json
detectors/node/*/package.json
metapackages/*/package.json
packages/*/package.json
plugins/node/*/package.json
plugins/web/*/package.json
propagators/*/package.json
- name: Install minimum npm 9
run: npm install -g npm@9
- name: Set MySQL variables
run: mysql --user=root --password=${MYSQL_ROOT_PASSWORD} --host=${MYSQL_HOST} --port=${MYSQL_PORT} -e "SET GLOBAL log_output='TABLE'; SET GLOBAL general_log = 1;" mysql
- name: Cache Dependencies
uses: actions/cache@v3
with:
path: |
node_modules
package-lock.json
detectors/node/*/node_modules
detectors/node/*/package-lock.json
metapackages/*/node_modules
metapackages/*/package-lock.json
packages/*/node_modules
packages/*/package-lock.json
plugins/node/*/node_modules
plugins/node/*/package-lock.json
plugins/web/*/node_modules
plugins/web/*/package-lock.json
propagators/*/node_modules
propagators/*/package-lock.json
key: ${{ runner.os }}-${{ matrix.node }}-${{ hashFiles('package.json', 'detectors/node/*/package.json', 'metapackages/*/package.json', 'packages/*/package.json', 'plugins/node/*/package.json', 'plugins/web/*/package.json', 'propagators/*/package.json') }}
- name: Legacy Peer Dependencies for npm 7
if: matrix.node == '16'
run: npm config set legacy-peer-deps=true
- name: Install Root Dependencies
run: npm install --ignore-scripts
- name: Bootstrap Dependencies
run: npx lerna bootstrap --no-ci --hoist --nohoist='zone.js' --nohoist='mocha' --nohoist='ts-mocha'
- name: Install Workspaces
run: npm install
- name: Unit tests
env:
NODE_OPTIONS: --max_old_space_size=4096
run: npm run test:ci:changed -- ${{ matrix.lerna-extra-args }}
- name: Build examples
run: npm run compile:examples
Expand All @@ -173,29 +164,22 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Cache Dependencies
uses: actions/cache@v3
with:
path: |
node_modules
package-lock.json
detectors/node/*/node_modules
detectors/node/*/package-lock.json
metapackages/*/node_modules
metapackages/*/package-lock.json
packages/*/node_modules
packages/*/package-lock.json
plugins/node/*/node_modules
plugins/node/*/package-lock.json
plugins/web/*/node_modules
plugins/web/*/package-lock.json
propagators/*/node_modules
propagators/*/package-lock.json
key: ${{ runner.os }}${{ matrix.node }}-browser-${{ hashFiles('package.json', 'detectors/node/*/package.json', 'metapackages/*/package.json', 'packages/*/package.json', 'plugins/node/*/package.json', 'plugins/web/*/package.json', 'propagators/*/package.json') }}
cache: 'npm'
cache-dependency-path: |
package.json
detectors/node/*/package.json
metapackages/*/package.json
packages/*/package.json
plugins/node/*/package.json
plugins/web/*/package.json
propagators/*/package.json
- name: Install minimum npm 7
if: matrix.node == '14'
run: npm install -g npm@7
- name: Legacy Peer Dependencies for npm 7
run: npm config set legacy-peer-deps=true
- name: Install Root Dependencies
run: npm install --ignore-scripts
- name: Bootstrap Dependencies
run: npx lerna bootstrap --no-ci
run: npm install
- name: Unit tests
run: npm run test:browser
- name: Report Coverage
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"build:mv3": "npx webpack --mode=production --env MV=3",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"precompile": "tsc --version && lerna run version:update --scope @opentelemetry/browser-extension-autoinjection --include-dependencies",
"precompile": "tsc --version && lerna run version:update --scope @opentelemetry/browser-extension-autoinjection",
"prewatch": "npm run precompile",
"test": "nyc ts-mocha -p tsconfig.json 'test/**/*.test.ts'",
"tdd": "npm run test -- --watch-extensions ts --watch",
Expand All @@ -35,7 +35,7 @@
"@types/mocha": "8.2.3",
"@types/react": "17.0.16",
"@types/react-dom": "18.0.2",
"@types/sinon": "10.0.2",
"@types/sinon": "10.0.15",
"@types/sinon-chrome": "2.2.11",
"@typescript-eslint/eslint-plugin": "5.8.1",
"@typescript-eslint/parser": "5.8.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,8 @@
"compile": "tsc -p .",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"precompile": "tsc --version && lerna run version:update --scope @opentelemetry/resource-detector-alibaba-cloud --include-dependencies",
"precompile": "tsc --version && lerna run version:update --scope @opentelemetry/resource-detector-alibaba-cloud",
"prewatch": "npm run precompile",
"prepare": "npm run compile",
"test": "nyc ts-mocha -p tsconfig.json 'test/**/*.test.ts'",
"tdd": "npm run test -- --watch-extensions ts --watch",
"watch": "tsc -w"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,8 @@
"compile": "tsc -p .",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"precompile": "tsc --version && lerna run version:update --scope @opentelemetry/resource-detector-aws --include-dependencies",
"precompile": "tsc --version && lerna run version:update --scope @opentelemetry/resource-detector-aws",
"prewatch": "npm run precompile",
"prepare": "npm run compile",
"test": "nyc ts-mocha -p tsconfig.json 'test/**/*.test.ts'",
"tdd": "npm run test -- --watch-extensions ts --watch",
"watch": "tsc -w"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,8 @@
"compile": "npm run version:update && tsc -p .",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"precompile": "tsc --version && lerna run version --scope @opentelemetry/resource-detector-container --include-dependencies",
"precompile": "tsc --version && lerna run version --scope @opentelemetry/resource-detector-container",
"prewatch": "npm run precompile",
"prepare": "npm run compile",
"test": "nyc ts-mocha -p tsconfig.json 'test/**/*.test.ts'",
"tdd": "npm run test -- --watch-extensions ts --watch",
"version:update": "node ../../../scripts/version-update.js",
Expand All @@ -39,7 +38,7 @@
"@opentelemetry/contrib-test-utils": "^0.34.0",
"@types/mocha": "8.2.3",
"@types/node": "^18.0.0",
"@types/sinon": "10.0.2",
"@types/sinon": "10.0.15",
"eslint-plugin-header": "^3.1.1",
"mocha": "7.2.0",
"nock": "13.3.2",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,8 @@
"compile": "tsc -p .",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"precompile": "tsc --version && lerna run version:update --scope @opentelemetry/resource-detector-gcp --include-dependencies",
"precompile": "tsc --version && lerna run version:update --scope @opentelemetry/resource-detector-gcp",
"prewatch": "npm run precompile",
"prepare": "npm run compile",
"test": "nyc ts-mocha -p tsconfig.json 'test/**/*.test.ts'",
"tdd": "npm run test -- --watch-extensions ts --watch",
"watch": "tsc -w"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,8 @@
"compile": "tsc -p .",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"precompile": "tsc --version && lerna run version:update --scope @opentelemetry/resource-detector-github --include-dependencies",
"precompile": "tsc --version && lerna run version:update --scope @opentelemetry/resource-detector-github",
"prewatch": "npm run precompile",
"prepare": "npm run compile",
"test": "nyc ts-mocha -p tsconfig.json 'test/**/*.test.ts'",
"tdd": "npm run test -- --watch-extensions ts --watch",
"watch": "tsc -w"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,8 @@
"compile": "tsc -p .",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"precompile": "tsc --version && lerna run version:update --scope @opentelemetry/resource-detector-instana --include-dependencies",
"precompile": "tsc --version && lerna run version:update --scope @opentelemetry/resource-detector-instana",
"prewatch": "npm run precompile",
"prepare": "npm run compile",
"test": "nyc ts-mocha -p tsconfig.json 'test/**/*.test.ts'",
"tdd": "npm run test -- --watch-extensions ts --watch",
"watch": "tsc -w"
Expand Down
3 changes: 1 addition & 2 deletions metapackages/auto-instrumentations-node/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,8 @@
"compile": "tsc -p .",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"precompile": "tsc --version && lerna run version:update --scope @opentelemetry/auto-instrumentations-node --include-dependencies",
"precompile": "tsc --version && lerna run version:update --scope @opentelemetry/auto-instrumentations-node",
"prewatch": "npm run precompile",
"prepare": "npm run compile",
"tdd": "yarn test -- --watch-extensions ts --watch",
"test": "nyc ts-mocha -p tsconfig.json 'test/**/*.ts'",
"watch": "tsc -w"
Expand Down
5 changes: 2 additions & 3 deletions metapackages/auto-instrumentations-web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,8 @@
"compile": "tsc --build tsconfig.json tsconfig.esm.json",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"precompile": "tsc --version && lerna run version:update --scope @opentelemetry/auto-instrumentations-web --include-dependencies",
"precompile": "tsc --version && lerna run version:update --scope @opentelemetry/auto-instrumentations-web",
"prewatch": "npm run precompile",
"prepare": "npm run compile",
"test:browser": "nyc karma start --single-run",
"watch": "tsc --build --watch tsconfig.json tsconfig.esm.json"
},
Expand All @@ -33,7 +32,7 @@
"@opentelemetry/api": "^1.3.0"
},
"devDependencies": {
"@babel/core": "7.15.0",
"@babel/core": "7.22.9",
"@opentelemetry/api": "^1.3.0",
"@types/mocha": "8.2.3",
"@types/node": "18.16.19",
Expand Down
19 changes: 13 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"types": "build/src/index.d.ts",
"scripts": {
"clean": "lerna run clean",
"postinstall": "npm run bootstrap",
"postinstall": "lerna run compile",
"prepare": "husky install",
"precompile": "tsc --version && npm run version:update",
"version:update": "lerna run version:update",
Expand All @@ -23,15 +23,12 @@
"test": "lerna run test",
"test:ci:changed": "lerna run test --since origin/main",
"test:browser": "lerna run test:browser --concurrency 1",
"bootstrap": "lerna bootstrap --no-ci",
"bump": "lerna publish",
"changelog": "lerna-changelog",
"lerna:link": "lerna link",
"lint": "lerna run lint",
"lint:fix": "lerna run lint:fix",
"lint:examples": "eslint ./examples/**/*.js",
"lint:examples:fix": "eslint ./examples/**/*.js --fix",
"lerna:scope": "lerna bootstrap --include-dependents --include-dependencies --scope"
"lint:examples:fix": "eslint ./examples/**/*.js --fix"
},
"keywords": [
"opentelemetry",
Expand All @@ -56,12 +53,22 @@
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "7.0.4",
"lerna": "5.5.2",
"lerna": "7.1.4",
"lerna-changelog": "2.2.0",
"prettier": "2.8.7",
"typescript": "4.4.4",
"tslib": "^2.3.1"
},
"workspaces": [
"packages/*",
"metapackages/*",
"plugins/node/*",
"plugins/node/*/examples",
"plugins/web/*",
"plugins/web/*/examples",
"propagators/*",
"detectors/node/*"
],
"changelog": {
"labels": {
"breaking": ":boom: Breaking Change",
Expand Down
3 changes: 1 addition & 2 deletions packages/opentelemetry-host-metrics/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,8 @@
"compile": "tsc -p .",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"precompile": "tsc --version && lerna run version:update --scope @opentelemetry/host-metrics --include-dependencies",
"precompile": "tsc --version && lerna run version:update --scope @opentelemetry/host-metrics",
"prewatch": "npm run precompile",
"prepare": "npm run compile",
"tdd": "npm run test -- --watch-extensions ts --watch",
"test": "nyc ts-mocha -p tsconfig.json test/**/*.test.ts",
"version:update": "node ../../scripts/version-update.js",
Expand Down
5 changes: 2 additions & 3 deletions packages/opentelemetry-id-generator-aws-xray/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,15 @@
"types": "build/src/index.d.ts",
"repository": "open-telemetry/opentelemetry-js-contrib",
"scripts": {
"precompile": "tsc --version && lerna run version:update --scope @opentelemetry/id-generator-aws-xray --include-dependencies",
"precompile": "tsc --version && lerna run version:update --scope @opentelemetry/id-generator-aws-xray",
"prewatch": "npm run precompile",
"compile": "tsc --build tsconfig.json tsconfig.esm.json",
"clean": "tsc --build --clean tsconfig.json tsconfig.esm.json",
"test": "nyc ts-mocha -p tsconfig.json test/**/*.test.ts",
"test:browser": "nyc karma start --single-run",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"watch": "tsc --build --watch tsconfig.json tsconfig.esm.json",
"prepare": "npm run compile"
"watch": "tsc --build --watch tsconfig.json tsconfig.esm.json"
},
"keywords": [
"opentelemetry",
Expand Down
3 changes: 1 addition & 2 deletions packages/opentelemetry-propagation-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@
"compile": "tsc --build tsconfig.json tsconfig.esm.json",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"precompile": "tsc --version && lerna run version:update --scope @opentelemetry/propagation-utils --include-dependencies",
"prepare": "npm run compile",
"precompile": "tsc --version && lerna run version:update --scope @opentelemetry/propagation-utils",
"prewatch": "npm run precompile",
"tdd": "npm run test -- --watch-extensions ts --watch",
"test": "nyc ts-mocha -p tsconfig.json 'test/**/*.test.ts'",
Expand Down
3 changes: 1 addition & 2 deletions packages/opentelemetry-redis-common/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,8 @@
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"compile": "tsc --build tsconfig.json",
"precompile": "tsc --version && lerna run version:update --scope @opentelemetry/redis-common --include-dependencies",
"precompile": "tsc --version && lerna run version:update --scope @opentelemetry/redis-common",
"prewatch": "npm run precompile",
"prepare": "npm run compile",
"test": "nyc ts-mocha -p tsconfig.json 'test/**/*.test.ts'",
"watch": "tsc -w"
},
Expand Down
4 changes: 1 addition & 3 deletions packages/opentelemetry-sampler-aws-xray/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,9 @@
"compile": "tsc -p .",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"precompile": "tsc --version && lerna run version:update --scope @opentelemetry/sampler-aws-xray --include-dependencies",
"precompile": "tsc --version && lerna run version:update --scope @opentelemetry/sampler-aws-xray",
"prewatch": "npm run precompile",
"clean": "tsc --build --clean tsconfig.json tsconfig.esm.json",
"prepare": "npm run compile",
"tdd": "npm run test -- --watch-extensions ts --watch",
"test": "nyc ts-mocha -p tsconfig.json 'test/**/*.test.ts'",
"version:update": "node ../../scripts/version-update.js",
Expand Down Expand Up @@ -64,7 +63,6 @@
"ts-mocha": "10.0.0",
"nyc": "15.1.0",
"typescript": "4.4.4",
"gts": "3.1.0",
"@typescript-eslint/eslint-plugin": "5.8.1",
"@typescript-eslint/parser": "5.8.1"
},
Expand Down
3 changes: 1 addition & 2 deletions packages/opentelemetry-sql-common/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,8 @@
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"compile": "tsc --build tsconfig.json",
"precompile": "tsc --version && lerna run version:update --scope @opentelemetry/sql-common --include-dependencies",
"precompile": "tsc --version && lerna run version:update --scope @opentelemetry/sql-common",
"prewatch": "npm run precompile",
"prepare": "npm run compile",
"test": "nyc ts-mocha -p tsconfig.json 'test/**/*.test.ts'",
"watch": "tsc -w"
},
Expand Down
3 changes: 1 addition & 2 deletions packages/opentelemetry-test-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,8 @@
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"compile": "tsc -p .",
"precompile": "tsc --version && lerna run version:update --scope @opentelemetry/contrib-test-utils --include-dependencies",
"precompile": "tsc --version && lerna run version:update --scope @opentelemetry/contrib-test-utils",
"prewatch": "npm run precompile",
"prepare": "npm run compile",
"watch": "tsc -w"
},
"repository": "open-telemetry/opentelemetry-js-contrib",
Expand Down
3 changes: 1 addition & 2 deletions plugins/node/instrumentation-amqplib/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,8 @@
"compile": "npm run version:update && tsc -p .",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"precompile": "tsc --version && lerna run version --scope @opentelemetry/instrumentation-amqplib --include-dependencies",
"precompile": "tsc --version && lerna run version --scope @opentelemetry/instrumentation-amqplib",
"prewatch": "npm run precompile",
"prepare": "npm run compile",
"tdd": "npm run test -- --watch-extensions ts --watch",
"test": "nyc ts-mocha -p tsconfig.json --require '@opentelemetry/contrib-test-utils' 'test/**/*.test.ts'",
"test-all-versions": "tav",
Expand Down
Loading