Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: describe correct types for mount function #11136

Merged
merged 2 commits into from
Mar 24, 2025
Merged
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
6 changes: 4 additions & 2 deletions packages/cypress-ct-ui5-webc/package.json
Original file line number Diff line number Diff line change
@@ -3,16 +3,18 @@
"version": "0.0.2",
"description": "Custom framework definition adapter for Cypress Component Testing of UI5 Web Components",
"license": "MIT",
"types": "./dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"node": "./dist/definition.js",
"default": "./dist/index.js"
},
"scripts": {
"clean": "rimraf dist",
"build": "yarn build:definition && yarn build:mount",
"prepublishOnly": "yarn build",
"build:mount": "tsc --project tsconfig.mount.json",
"build:definition": "tsc --project tsconfig.definition.json"
"build:mount": "tsc -p tsconfig.mount.json",
"build:definition": "tsc -p tsconfig.definition.json"
},
"devDependencies": {
"typescript": "^5.6.2",