Skip to content
Merged
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
2 changes: 1 addition & 1 deletion packages/eslint/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"eslint-plugin-playwright": "^2.2.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^16.1.0",
"globals": "^16.3.0",
"typescript-eslint": "^8.35.1"
}
}
2 changes: 1 addition & 1 deletion packages/suite-desktop-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
"dotenv": "^16.4.7",
"electron": "35.1.2",
"fs-extra": "^11.3.0",
"glob": "^11.0.2",
"glob": "^11.0.3",
"jest-diff": "^29.7.0",
"lodash": "^4.17.21",
"terser-webpack-plugin": "^5.3.14",
Expand Down
3 changes: 3 additions & 0 deletions scripts/convertFigmaPalette.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ import prettier from 'prettier';
import yargs from 'yargs';
import { hideBin } from 'yargs/helpers';

/**
* Example usage: yarn convert-figma-palette --test=true
*/
(async () => {
const { argv } = yargs(hideBin(process.argv)).boolean('test') as any;
const isTesting = argv.test || false;
Expand Down
6 changes: 3 additions & 3 deletions scripts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
"@mobily/ts-belt": "^3.13.1",
"chalk": "^4.1.2",
"fs-extra": "^11.3.0",
"minimatch": "^10.0.1",
"minimatch": "^10.0.3",
"prettier": "^3.6.2",
"sort-package-json": "^3.2.1",
"sort-package-json": "^3.4.0",
"tsx": "^4.20.3",
"yargs": "17.7.2"
"yargs": "^18.0.0"
},
"devDependencies": {
"@trezor/eslint": "workspace:*",
Expand Down
6 changes: 6 additions & 0 deletions scripts/updateProjectReferences.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ import { hideBin } from 'yargs/helpers';
import { getPrettierConfig } from './utils/getPrettierConfig';
import { getWorkspacesList } from './utils/getWorkspacesList';

/**
* Example usage:
* yarn update-project-references --read-only 1 2 3 --test true
* yarn update-project-references --ignore *\/firmware
*/
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

❤️

(async () => {
const { argv } = yargs(hideBin(process.argv))
.array('read-only')
Expand All @@ -17,6 +22,7 @@ import { getWorkspacesList } from './utils/getWorkspacesList';

const readOnlyGlobs: string[] = argv.readOnly || [];
const ignoreGlobs: string[] = argv.ignore || [];

const isTesting = argv.test || false;

const prettierConfig = await getPrettierConfig();
Expand Down
4 changes: 2 additions & 2 deletions suite-common/test-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
"@suite-common/wallet-types": "workspace:*",
"@trezor/connect": "workspace:*",
"@trezor/utils": "workspace:*",
"core-js": "^3.42.0",
"fake-indexeddb": "^6.0.0",
"core-js": "^3.43.0",
"fake-indexeddb": "^6.0.1",
"redux": "^5.0.1",
"redux-thunk": "^3.1.0"
}
Expand Down
Loading