Skip to content

Commit f920dcb

Browse files
authoredFeb 6, 2025··
chore: enforce 'no-implicit-dependencies' on tslint (#31022)
* chore: enforce 'no-implicit-dependencies' on tslint * downgrade chalk version for errors package
1 parent 8ac5504 commit f920dcb

File tree

153 files changed

+413
-80
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

153 files changed

+413
-80
lines changed
 

‎packages/app/package.json

+19-1
Original file line numberDiff line numberDiff line change
@@ -17,25 +17,33 @@
1717
"lint": "eslint --ext .js,.jsx,.ts,.tsx,.json, .",
1818
"start": "echo \"run 'yarn dev' or 'yarn watch' from the root\" && exit 1",
1919
"test": "echo 'ok'",
20-
"tslint": "tslint --config ../ts/tslint.json --project .",
20+
"tslint": "tslint --config ../ts/tslint.json --project . --exclude ./src/router/router.ts, *.gen.ts",
2121
"watch": "echo \"run 'yarn dev' or 'yarn watch' from the root\" && exit 1"
2222
},
2323
"dependencies": {},
2424
"devDependencies": {
25+
"@cypress-design/icon-registry": "^1.5.1",
2526
"@cypress-design/vue-button": "^1.1.0",
2627
"@cypress-design/vue-icon": "^1.6.0",
2728
"@cypress-design/vue-statusicon": "^1.0.0",
2829
"@cypress-design/vue-tabs": "^1.2.2",
30+
"@cypress/mount-utils": "0.0.0-development",
2931
"@faker-js/faker": "8.4.1",
3032
"@graphql-typed-document-node/core": "^3.1.0",
3133
"@headlessui/vue": "1.4.0",
3234
"@iconify-json/mdi": "1.1.63",
3335
"@intlify/unplugin-vue-i18n": "4.0.0",
36+
"@packages/data-context": "0.0.0-development",
3437
"@packages/frontend-shared": "0.0.0-development",
38+
"@packages/graphql": "0.0.0-development",
39+
"@packages/root": "0.0.0-development",
40+
"@packages/socket": "0.0.0-development",
3541
"@packages/telemetry": "0.0.0-development",
42+
"@packages/types": "0.0.0-development",
3643
"@percy/cypress": "^3.1.3",
3744
"@popperjs/core": "2.11.6",
3845
"@testing-library/cypress": "9.0.0",
46+
"@tooling/system-tests": "0.0.0-development",
3947
"@urql/core": "2.4.4",
4048
"@urql/vue": "0.6.2",
4149
"@vitejs/plugin-legacy": "5.4.0",
@@ -48,30 +56,40 @@
4856
"combine-properties": "0.1.0",
4957
"concurrently": "^6.2.0",
5058
"cross-env": "6.0.3",
59+
"cypress-plugin-tab": "1.0.5",
5160
"cypress-real-events": "1.6.0",
5261
"dayjs": "^1.9.3",
62+
"debug": "^4.3.4",
5363
"disparity": "^3.0.0",
5464
"engine.io-client": "3.5.2",
65+
"fs-extra": "9.1.0",
5566
"fuzzysort": "^1.1.4",
5667
"graphql": "^15.5.1",
5768
"graphql-tag": "^2.12.5",
5869
"human-interval": "1.0.0",
5970
"javascript-time-ago": "2.3.8",
6071
"just-my-luck": "3.0.0",
6172
"lodash": "4.17.21",
73+
"mobx": "6.13.5",
6274
"nanoid": "3.3.4",
75+
"p-defer": "^3.0.0",
6376
"pinia": "2.0.0-rc.14",
6477
"rollup-plugin-copy": "3.4.0",
6578
"rollup-plugin-polyfill-node": "^0.7.0",
79+
"simple-git": "3.25.0",
80+
"sinon": "13.0.2",
81+
"tailwindcss": "^3.3.1",
6682
"unplugin-icons": "0.19.0",
6783
"unplugin-vue-components": "^0.27.0",
6884
"vite": "5.2.11",
6985
"vite-plugin-pages": "0.32.1",
7086
"vite-plugin-vue-layouts": "0.11.0",
7187
"vite-svg-loader": "5.1.0",
7288
"vue": "3.2.47",
89+
"vue-demi": "0.11.2",
7390
"vue-i18n": "9.13.1",
7491
"vue-router": "4",
92+
"vue-toastification": "2.0.0-rc.1",
7593
"vue-tsc": "^2.0.19",
7694
"wonka": "^4.0.15"
7795
},

‎packages/app/src/components/FileMatch.cy.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import FileMatch from './FileMatch.vue'
22
import { ref } from 'vue'
3+
// tslint:disable-next-line: no-implicit-dependencies - unsure how to handle these
34
import { defaultMessages } from '@cy/i18n'
45
import { each } from 'lodash'
56

5 commit comments

Comments
 (5)

cypress-bot[bot] commented on Feb 6, 2025

@cypress-bot[bot]
Contributor

Circle has built the linux x64 version of the Test Runner.

Learn more about this pre-release build at https://on.cypress.io/advanced-installation#Install-pre-release-version

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/14.0.3/linux-x64/develop-f920dcbd0d14ad25e5b9b0dfec12cdcd28d50211/cypress.tgz

cypress-bot[bot] commented on Feb 6, 2025

@cypress-bot[bot]
Contributor

Circle has built the linux arm64 version of the Test Runner.

Learn more about this pre-release build at https://on.cypress.io/advanced-installation#Install-pre-release-version

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/14.0.3/linux-arm64/develop-f920dcbd0d14ad25e5b9b0dfec12cdcd28d50211/cypress.tgz

cypress-bot[bot] commented on Feb 6, 2025

@cypress-bot[bot]
Contributor

Circle has built the win32 x64 version of the Test Runner.

Learn more about this pre-release build at https://on.cypress.io/advanced-installation#Install-pre-release-version

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/14.0.3/win32-x64/develop-f920dcbd0d14ad25e5b9b0dfec12cdcd28d50211/cypress.tgz

cypress-bot[bot] commented on Feb 7, 2025

@cypress-bot[bot]
Contributor

Circle has built the darwin arm64 version of the Test Runner.

Learn more about this pre-release build at https://on.cypress.io/advanced-installation#Install-pre-release-version

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/14.0.3/darwin-arm64/develop-f920dcbd0d14ad25e5b9b0dfec12cdcd28d50211/cypress.tgz

cypress-bot[bot] commented on Feb 7, 2025

@cypress-bot[bot]
Contributor

Circle has built the darwin x64 version of the Test Runner.

Learn more about this pre-release build at https://on.cypress.io/advanced-installation#Install-pre-release-version

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/14.0.3/darwin-x64/develop-f920dcbd0d14ad25e5b9b0dfec12cdcd28d50211/cypress.tgz
Please sign in to comment.