diff --git a/eslint.config.js b/eslint.config.js index fe1d4bf9..82f9383f 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -36,7 +36,7 @@ export default [ } }, { - files: ['apps/e2e/**/*.ts', 'apps/web/src/**/*.{tsx,ts}', 'stdlib'], + files: ['apps/e2e/**/*.ts', 'apps/web/src/**/*.{tsx,ts}', 'stdlib/**/*.ts'], rules: { 'no-console': 'off' } diff --git a/package.json b/package.json index 45ec56f8..b411b218 100644 --- a/package.json +++ b/package.json @@ -13,17 +13,17 @@ }, "type": "module", "scripts": { - "build": "turbo build --filter=!web", + "build": "turbo build --filter=!web --concurrency=32", "dev": "turbo dev --continue --filter=!./examples/*", "docs": "turbo run docs", "clean": "turbo clean", "fix": "run-s fix:*", "fix:format": "prettier --write \"**/*.{js,ts,tsx}\"", - "test": "turbo test", + "test": "turbo test --concurrency=32", "test:format": "prettier --check \"**/*.{js,ts,tsx}\"", "test:lint": "eslint --cache .", - "test:typecheck": "turbo test:typecheck", - "test:unit": "turbo test:unit", + "test:typecheck": "turbo test:typecheck --concurrency=32", + "test:unit": "turbo test:unit --concurrency=32", "pretest": "run-s build", "preinstall": "npx only-allow pnpm", "prerelease": "run-s build", diff --git a/stdlib/core/src/message.ts b/stdlib/core/src/message.ts index 8d9dbd09..a0ec0672 100644 --- a/stdlib/core/src/message.ts +++ b/stdlib/core/src/message.ts @@ -375,7 +375,6 @@ export namespace Msg { return Msg.refusal(msg.refusal) } else { // @TODO: probably don't want to error here - // eslint-disable-next-line no-console console.warn('Invalid message', msg) throw new Error('Invalid message') }