Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
15 changes: 8 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@
"build:types": "tsc --build tsconfig.build.json --verbose",
"changelog:update": "yarn workspaces foreach --all --no-private --parallel --interlaced --verbose run changelog:update",
"changelog:validate": "yarn workspaces foreach --all --no-private --parallel --interlaced --verbose run changelog:validate",
"create-package": "ts-node scripts/create-package",
"generate-method-action-types": "ts-node scripts/generate-method-action-types.ts",
"create-package": "tsx scripts/create-package",
"generate-method-action-types": "tsx scripts/generate-method-action-types.ts",
"lint": "yarn lint:eslint && echo && yarn lint:misc --check && yarn constraints && yarn lint:dependencies && yarn lint:teams && yarn generate-method-action-types --check",
"lint:dependencies": "depcheck && yarn dedupe --check",
"lint:dependencies:fix": "depcheck && yarn dedupe",
"lint:eslint": "yarn build:only-clean && yarn ts-node ./scripts/run-eslint.ts --cache",
"lint:eslint": "yarn build:only-clean && yarn tsx ./scripts/run-eslint.ts --cache",
"lint:fix": "yarn lint:eslint --fix && echo && yarn lint:misc --write && yarn constraints --fix && yarn lint:dependencies:fix && yarn generate-method-action-types --fix",
"lint:misc": "prettier --no-error-on-unmatched-pattern '**/*.json' '**/*.md' '**/*.yml' '!.yarnrc.yml' '!merged-packages/**' --ignore-path .gitignore",
"lint:teams": "ts-node scripts/lint-teams-json.ts",
"lint:teams": "tsx scripts/lint-teams-json.ts",
"prepack": "./scripts/prepack.sh",
"prepare-preview-builds": "./scripts/prepare-preview-builds.sh",
"publish-previews": "yarn workspaces foreach --all --no-private --parallel --verbose run publish:preview",
Expand All @@ -38,7 +38,7 @@
"test:packages": "yarn test:verbose --silent --collectCoverage=false --reporters=jest-silent-reporter",
"test:scripts": "NODE_OPTIONS=--experimental-vm-modules yarn jest --config ./jest.config.scripts.js --silent",
"test:verbose": "yarn workspaces foreach --all --parallel --verbose run test:verbose",
"update-readme-content": "ts-node scripts/update-readme-content.ts",
"update-readme-content": "tsx scripts/update-readme-content.ts",
"workspaces:list-versions": "./scripts/list-workspace-versions.sh"
},
"simple-git-hooks": {
Expand Down Expand Up @@ -99,7 +99,7 @@
"rimraf": "^5.0.5",
"semver": "^7.6.3",
"simple-git-hooks": "^2.8.0",
"ts-node": "^10.9.1",
"tsx": "^4.20.5",
"typescript": "~5.2.2",
"typescript-eslint": "^8.7.0",
"yargs": "^17.7.2"
Expand All @@ -113,7 +113,8 @@
"@lavamoat/preinstall-always-fail": false,
"@keystonehq/bc-ur-registry-eth>hdkey>secp256k1": true,
"babel-runtime>core-js": false,
"simple-git-hooks": false
"simple-git-hooks": false,
"tsx>esbuild": false
}
}
}
2 changes: 1 addition & 1 deletion scripts/generate-method-action-types.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!yarn ts-node
#!yarn tsx

import { ESLint } from 'eslint';
import * as fs from 'fs';
Expand Down
2 changes: 1 addition & 1 deletion scripts/generate-preview-build-message.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!yarn ts-node
#!yarn tsx

import execa from 'execa';
import fs from 'fs';
Expand Down
2 changes: 1 addition & 1 deletion scripts/update-readme-content.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!yarn ts-node
#!yarn tsx

import execa from 'execa';
import fs from 'fs';
Expand Down
Loading
Loading