Skip to content

Commit

Permalink
chore: yarn run --top-level for Berry compat
Browse files Browse the repository at this point in the history
  • Loading branch information
turadg committed Aug 22, 2024
1 parent e33fa6b commit f5ce897
Show file tree
Hide file tree
Showing 42 changed files with 113 additions and 113 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"format": "yarn prettier --write .github golang packages scripts a3p-integration multichain-testing",
"lint:format": "yarn prettier --check .github golang packages scripts a3p-integration multichain-testing",
"lint-fix": "yarn lerna run --no-bail lint-fix",
"lint": "run-s --continue-on-error 'lint:*'",
"lint": "yarn run -T run-s --continue-on-error 'lint:*'",
"lint:packages": "yarn lerna run --no-bail lint",
"test": "yarn lerna run --no-bail test",
"test:c8-all": "rm -rf coverage/tmp && C8_OPTIONS=\"--clean=false --temp-directory=$PWD/coverage/tmp\" lerna run test:c8",
Expand Down
6 changes: 3 additions & 3 deletions packages/ERTP/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
"test:xs-unit": "ava-xs",
"test:xs-worker": "SWINGSET_WORKER_TYPE=xs-worker ava -c 2 test/swingsetTests",
"lint-fix": "yarn lint:eslint --fix",
"lint": "run-s --continue-on-error 'lint:*'",
"lint:eslint": "eslint .",
"lint:types": "tsc"
"lint": "yarn run -T run-s --continue-on-error 'lint:*'",
"lint:eslint": "yarn run -T eslint .",
"lint:types": "yarn run -T tsc"
},
"repository": {
"type": "git",
Expand Down
6 changes: 3 additions & 3 deletions packages/SwingSet/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
"test:xs": "SWINGSET_WORKER_TYPE=xs-worker ava",
"test:xs-worker": "ava test/workers -m 'xsnap vat manager'",
"lint-fix": "yarn lint:eslint --fix",
"lint": "run-s --continue-on-error 'lint:*'",
"lint:types": "tsc",
"lint:eslint": "eslint ."
"lint": "yarn run -T run-s --continue-on-error 'lint:*'",
"lint:types": "yarn run -T tsc",
"lint:eslint": "yarn run -T eslint ."
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.9",
Expand Down
6 changes: 3 additions & 3 deletions packages/access-token/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
"test": "ava",
"test:c8": "c8 $C8_OPTIONS ava --config=ava-nesm.config.js",
"test:xs": "exit 0",
"lint": "run-s --continue-on-error 'lint:*'",
"lint": "yarn run -T run-s --continue-on-error 'lint:*'",
"lint-fix": "yarn lint:eslint --fix",
"lint:eslint": "eslint .",
"lint:types": "tsc"
"lint:eslint": "yarn run -T eslint .",
"lint:types": "yarn run -T tsc"
},
"dependencies": {
"n-readlines": "^1.0.0",
Expand Down
6 changes: 3 additions & 3 deletions packages/agoric-cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
"test:xs": "exit 0",
"integration-test": "ava --config .ava-integration-test.config.js",
"lint-fix": "yarn lint:eslint --fix",
"lint": "run-s --continue-on-error 'lint:*'",
"lint:types": "tsc",
"lint:eslint": "eslint ."
"lint": "yarn run -T run-s --continue-on-error 'lint:*'",
"lint:types": "yarn run -T tsc",
"lint:eslint": "yarn run -T eslint ."
},
"devDependencies": {
"@agoric/cosmic-swingset": "^0.41.3",
Expand Down
6 changes: 3 additions & 3 deletions packages/base-zone/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
"test:c8": "c8 $C8_OPTIONS ava --config=ava-nesm.config.js",
"test:xs": "exit 0",
"lint-fix": "yarn lint:eslint --fix",
"lint": "run-s --continue-on-error 'lint:*'",
"lint:types": "tsc",
"lint:eslint": "eslint ."
"lint": "yarn run -T run-s --continue-on-error 'lint:*'",
"lint:types": "yarn run -T tsc",
"lint:eslint": "yarn run -T eslint ."
},
"exports": {
".": "./src/index.js",
Expand Down
6 changes: 3 additions & 3 deletions packages/benchmark/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
"test": "exit 0",
"test:xs": "exit 0",
"lint-fix": "yarn lint:eslint --fix",
"lint": "run-s --continue-on-error 'lint:*'",
"lint:types": "tsc",
"lint:eslint": "eslint ."
"lint": "yarn run -T run-s --continue-on-error 'lint:*'",
"lint:types": "yarn run -T tsc",
"lint:eslint": "yarn run -T eslint ."
},
"keywords": [],
"author": "Agoric",
Expand Down
6 changes: 3 additions & 3 deletions packages/boot/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
"test": "ava",
"test:xs": "SWINGSET_WORKER_TYPE=xs-worker ava test/bootstrapTests test/upgrading",
"lint-fix": "yarn lint:eslint --fix",
"lint": "run-s --continue-on-error 'lint:*'",
"lint:types": "tsc",
"lint:eslint": "eslint ."
"lint": "yarn run -T run-s --continue-on-error 'lint:*'",
"lint:types": "yarn run -T tsc",
"lint:eslint": "yarn run -T eslint ."
},
"keywords": [],
"author": "Agoric",
Expand Down
6 changes: 3 additions & 3 deletions packages/builders/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
"test": "ava",
"test:xs": "exit 0",
"lint-fix": "yarn lint:eslint --fix",
"lint": "run-s --continue-on-error 'lint:*'",
"lint:types": "tsc",
"lint:eslint": "eslint ."
"lint": "yarn run -T run-s --continue-on-error 'lint:*'",
"lint:types": "yarn run -T tsc",
"lint:eslint": "yarn run -T eslint ."
},
"keywords": [],
"author": "Agoric",
Expand Down
6 changes: 3 additions & 3 deletions packages/cache/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
"test:c8": "c8 $C8_OPTIONS ava --config=ava-nesm.config.js",
"test:xs": "exit 0",
"lint-fix": "yarn lint:eslint --fix",
"lint": "run-s --continue-on-error 'lint:*'",
"lint:types": "tsc",
"lint:eslint": "eslint --ext .js,.ts ."
"lint": "yarn run -T run-s --continue-on-error 'lint:*'",
"lint:types": "yarn run -T tsc",
"lint:eslint": "yarn run -T eslint --ext .js,.ts ."
},
"keywords": [],
"author": "Agoric",
Expand Down
6 changes: 3 additions & 3 deletions packages/casting/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
"test:c8": "c8 $C8_OPTIONS ava --config=ava-nesm.config.js",
"test:xs": "exit 0",
"lint-fix": "yarn lint:eslint --fix",
"lint": "run-s --continue-on-error 'lint:*'",
"lint:types": "tsc",
"lint:eslint": "eslint --ext .js,.ts ."
"lint": "yarn run -T run-s --continue-on-error 'lint:*'",
"lint:types": "yarn run -T tsc",
"lint:eslint": "yarn run -T eslint --ext .js,.ts ."
},
"keywords": [],
"author": "Agoric",
Expand Down
6 changes: 3 additions & 3 deletions packages/cosmic-swingset/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
"test:c8": "c8 $C8_OPTIONS ava --config=ava-nesm.config.js",
"test:xs": "exit 0",
"lint-fix": "yarn lint:eslint --fix",
"lint": "run-s --continue-on-error 'lint:*'",
"lint:types": "tsc",
"lint:eslint": "eslint ."
"lint": "yarn run -T run-s --continue-on-error 'lint:*'",
"lint:types": "yarn run -T tsc",
"lint:eslint": "yarn run -T eslint ."
},
"keywords": [],
"author": "Agoric",
Expand Down
6 changes: 3 additions & 3 deletions packages/deploy-script-support/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
"test": "ava",
"test:xs": "exit 0",
"lint-fix": "yarn lint:eslint --fix",
"lint:eslint": "eslint .",
"lint:types": "tsc",
"lint": "run-s --continue-on-error 'lint:*'"
"lint:eslint": "yarn run -T eslint .",
"lint:types": "yarn run -T tsc",
"lint": "yarn run -T run-s --continue-on-error 'lint:*'"
},
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/deployment/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"test:xs": "exit 0",
"build": "exit 0",
"lint-fix": "yarn lint:eslint --fix",
"lint:eslint": "eslint ."
"lint:eslint": "yarn run -T eslint ."
},
"repository": "https://github.com/Agoric/agoric-sdk",
"author": "Agoric",
Expand Down
6 changes: 3 additions & 3 deletions packages/governance/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
"test:c8": "c8 $C8_OPTIONS ava --config=ava-nesm.config.js",
"test:xs": "exit 0",
"lint-fix": "yarn lint:eslint --fix",
"lint": "run-s --continue-on-error 'lint:*'",
"lint:eslint": "eslint .",
"lint:types": "tsc"
"lint": "yarn run -T run-s --continue-on-error 'lint:*'",
"lint:eslint": "yarn run -T eslint .",
"lint:types": "yarn run -T tsc"
},
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/import-manager/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"test:xs": "exit 0",
"lint": "yarn lint:eslint",
"lint-fix": "yarn lint:eslint --fix",
"lint:eslint": "eslint ."
"lint:eslint": "yarn run -T eslint ."
},
"repository": {
"type": "git",
Expand Down
6 changes: 3 additions & 3 deletions packages/inter-protocol/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
"test:c8": "c8 $C8_OPTIONS ava --config=ava-nesm.config.js",
"test:xs": "exit 0",
"lint-fix": "yarn lint:eslint --fix",
"lint": "run-s --continue-on-error 'lint:*'",
"lint:eslint": "eslint .",
"lint:types": "tsc"
"lint": "yarn run -T run-s --continue-on-error 'lint:*'",
"lint:eslint": "yarn run -T eslint .",
"lint:types": "yarn run -T tsc"
},
"repository": {
"type": "git",
Expand Down
6 changes: 3 additions & 3 deletions packages/internal/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
"test:nyc": "exit 0",
"test:xs": "exit 0",
"lint-fix": "yarn lint:eslint --fix",
"lint": "run-s --continue-on-error 'lint:*'",
"lint:eslint": "eslint .",
"lint:types": "tsc"
"lint": "yarn run -T run-s --continue-on-error 'lint:*'",
"lint:eslint": "yarn run -T eslint .",
"lint:types": "yarn run -T tsc"
},
"dependencies": {
"@agoric/base-zone": "^0.1.0",
Expand Down
6 changes: 3 additions & 3 deletions packages/kmarshal/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
"test:c8": "c8 $C8_OPTIONS ava --config=ava-nesm.config.js",
"test:xs": "exit 0",
"lint-fix": "yarn lint:eslint --fix",
"lint": "run-s --continue-on-error 'lint:*'",
"lint:types": "tsc",
"lint:eslint": "eslint ."
"lint": "yarn run -T run-s --continue-on-error 'lint:*'",
"lint:types": "yarn run -T tsc",
"lint:eslint": "yarn run -T eslint ."
},
"dependencies": {
"@endo/errors": "^1.2.4",
Expand Down
6 changes: 3 additions & 3 deletions packages/network/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
"test:c8": "c8 $C8_OPTIONS ava",
"test:xs": "exit 0",
"lint-fix": "yarn lint:eslint --fix",
"lint": "run-s --continue-on-error 'lint:*'",
"lint:types": "tsc",
"lint:eslint": "eslint ."
"lint": "yarn run -T run-s --continue-on-error 'lint:*'",
"lint:types": "yarn run -T tsc",
"lint:eslint": "yarn run -T eslint ."
},
"keywords": [],
"author": "Agoric",
Expand Down
6 changes: 3 additions & 3 deletions packages/notifier/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
"test:c8": "c8 $C8_OPTIONS ava --config=ava-nesm.config.js",
"test:xs": "exit 0",
"lint-fix": "yarn lint:eslint --fix",
"lint": "run-s --continue-on-error 'lint:*'",
"lint:eslint": "eslint .",
"lint:types": "tsc"
"lint": "yarn run -T run-s --continue-on-error 'lint:*'",
"lint:eslint": "yarn run -T eslint .",
"lint:types": "yarn run -T tsc"
},
"repository": {
"type": "git",
Expand Down
6 changes: 3 additions & 3 deletions packages/pegasus/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
"test:c8": "c8 $C8_OPTIONS ava --config=ava-nesm.config.js",
"test:xs": "exit 0",
"lint-fix": "yarn lint:eslint --fix",
"lint": "run-s --continue-on-error 'lint:*'",
"lint:eslint": "eslint .",
"lint:types": "tsc"
"lint": "yarn run -T run-s --continue-on-error 'lint:*'",
"lint:eslint": "yarn run -T eslint .",
"lint:types": "yarn run -T tsc"
},
"repository": {
"type": "git",
Expand Down
6 changes: 3 additions & 3 deletions packages/smart-wallet/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
"postpack": "git clean -f '*.d.ts*'",
"test": "ava",
"test:xs": "exit 0",
"lint": "run-s --continue-on-error 'lint:*'",
"lint": "yarn run -T run-s --continue-on-error 'lint:*'",
"lint-fix": "yarn lint:eslint --fix",
"lint:types": "tsc",
"lint:eslint": "eslint ."
"lint:types": "yarn run -T tsc",
"lint:eslint": "yarn run -T eslint ."
},
"devDependencies": {
"@agoric/cosmic-proto": "^0.4.0",
Expand Down
6 changes: 3 additions & 3 deletions packages/solo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
"test:c8": "c8 $C8_OPTIONS ava --config=ava-nesm.config.js",
"test:xs": "exit 0",
"lint-fix": "yarn lint:eslint --fix",
"lint": "run-s --continue-on-error 'lint:*'",
"lint:types": "tsc",
"lint:eslint": "eslint ."
"lint": "yarn run -T run-s --continue-on-error 'lint:*'",
"lint:types": "yarn run -T tsc",
"lint:eslint": "yarn run -T eslint ."
},
"keywords": [],
"author": "Agoric",
Expand Down
4 changes: 2 additions & 2 deletions packages/sparse-ints/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
"build": "exit 0",
"test": "exit 0",
"test:xs": "exit 0",
"lint": "run-s --continue-on-error 'lint:*'",
"lint": "yarn run -T run-s --continue-on-error 'lint:*'",
"lint-fix": "yarn lint:eslint --fix",
"lint:eslint": "eslint ."
"lint:eslint": "yarn run -T eslint ."
},
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions packages/spawner/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
"test": "ava",
"test:c8": "c8 $C8_OPTIONS ava --config=ava-nesm.config.js",
"test:xs": "exit 0",
"lint": "run-s --continue-on-error 'lint:*'",
"lint": "yarn run -T run-s --continue-on-error 'lint:*'",
"lint-fix": "yarn lint:eslint --fix",
"lint:eslint": "eslint ."
"lint:eslint": "yarn run -T eslint ."
},
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions packages/stat-logger/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
"build": "exit 0",
"test": "exit 0",
"test:xs": "exit 0",
"lint": "run-s --continue-on-error 'lint:*'",
"lint": "yarn run -T run-s --continue-on-error 'lint:*'",
"lint-fix": "yarn lint:eslint --fix",
"lint:eslint": "eslint ."
"lint:eslint": "yarn run -T eslint ."
},
"dependencies": {
"@endo/errors": "^1.2.4"
Expand Down
6 changes: 3 additions & 3 deletions packages/store/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
"test": "ava",
"test:xs": "exit 0",
"lint-fix": "yarn lint:eslint --fix",
"lint": "run-s --continue-on-error 'lint:*'",
"lint:types": "tsc",
"lint:eslint": "eslint ."
"lint": "yarn run -T run-s --continue-on-error 'lint:*'",
"lint:types": "yarn run -T tsc",
"lint:eslint": "yarn run -T eslint ."
},
"repository": {
"type": "git",
Expand Down
6 changes: 3 additions & 3 deletions packages/swing-store/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
"test:c8": "c8 $C8_OPTIONS ava --config=ava-nesm.config.js",
"test:xs": "exit 0",
"lint-fix": "yarn lint:eslint --fix",
"lint": "run-s --continue-on-error 'lint:*'",
"lint:types": "tsc",
"lint:eslint": "eslint ."
"lint": "yarn run -T run-s --continue-on-error 'lint:*'",
"lint:types": "yarn run -T tsc",
"lint:eslint": "yarn run -T eslint ."
},
"dependencies": {
"@agoric/internal": "^0.3.2",
Expand Down
6 changes: 3 additions & 3 deletions packages/swingset-liveslots/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
"test": "ava",
"test:xs": "exit 0",
"lint-fix": "yarn lint:eslint --fix",
"lint": "run-s --continue-on-error 'lint:*'",
"lint:types": "tsc",
"lint:eslint": "eslint ."
"lint": "yarn run -T run-s --continue-on-error 'lint:*'",
"lint:types": "yarn run -T tsc",
"lint:eslint": "yarn run -T eslint ."
},
"dependencies": {
"@agoric/internal": "^0.3.2",
Expand Down
4 changes: 2 additions & 2 deletions packages/swingset-runner/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
"test:c8": "c8 $C8_OPTIONS ava --config=ava-nesm.config.js",
"test:xs": "exit 0",
"lint-fix": "yarn lint:eslint --fix",
"lint": "run-s --continue-on-error 'lint:*'",
"lint:eslint": "eslint .",
"lint": "yarn run -T run-s --continue-on-error 'lint:*'",
"lint:eslint": "yarn run -T eslint .",
"ci:autobench": "./autobench.js"
},
"dependencies": {
Expand Down
4 changes: 2 additions & 2 deletions packages/swingset-xsnap-supervisor/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
"build:bundle": "node scripts/build-bundle.js",
"build": "yarn build:bundle",
"clean": "rm -rf dist",
"lint": "run-s --continue-on-error 'lint:*'",
"lint": "yarn run -T run-s --continue-on-error 'lint:*'",
"lint:js": "eslint 'lib/**/*.js' 'src/**/*.js' 'scripts/**/*.js' 'test/**/*.js'",
"lint:types": "tsc",
"lint:types": "yarn run -T tsc",
"lint-fix": "eslint --fix 'lib/**/*.js' 'src/**/*.js' 'scripts/**/*.js' 'test/**/*.js'",
"test": "ava",
"test:c8": "c8 $C8_OPTIONS ava --config=ava-nesm.config.js",
Expand Down
Loading

0 comments on commit f5ce897

Please sign in to comment.