mirror of
https://github.com/cypress-io/cypress.git
synced 2026-01-26 00:49:05 -06:00
Fix dependency resolution
This commit is contained in:
@@ -21,7 +21,7 @@
|
||||
// "importHelpers": true, /* Import emit helpers from 'tslib'. */
|
||||
// "downlevelIteration": true, /* Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'. */
|
||||
// "isolatedModules": true, /* Transpile each file as a separate module (similar to 'ts.transpileModule'). */
|
||||
|
||||
"skipLibCheck": true,
|
||||
/* Strict Type-Checking Options */
|
||||
"strict": true, /* Enable all strict type-checking options. */
|
||||
// "noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */
|
||||
@@ -63,5 +63,5 @@
|
||||
/* Advanced Options */
|
||||
"forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */
|
||||
},
|
||||
"include": ["*.ts"]
|
||||
"include": ["./*.ts"]
|
||||
}
|
||||
|
||||
@@ -22,6 +22,7 @@
|
||||
"@cypress/webpack-preprocessor": "*",
|
||||
"@fortawesome/fontawesome-free": "5.11.2",
|
||||
"@packages/web-config": "*",
|
||||
"@reach/dialog": "0.10.5",
|
||||
"bluebird": "3.5.3",
|
||||
"bootstrap-sass": "3.4.1",
|
||||
"classnames": "2.2.6",
|
||||
|
||||
@@ -4,5 +4,5 @@
|
||||
@import 'styles/components/*';
|
||||
@import '../../ui-components/src/file-opener/file-opener';
|
||||
@import '!(styles)*/**/*';
|
||||
@import '../../../node_modules/@reach/dialog/styles.css';
|
||||
@import '../node_modules/@reach/dialog/styles.css';
|
||||
@import '../../ui-components/src/dropdown';
|
||||
|
||||
@@ -4,6 +4,6 @@
|
||||
@import 'lib/mixins';
|
||||
@import 'lib/base';
|
||||
@import 'lib/tooltip';
|
||||
@import '../../../node_modules/@reach/dialog/styles.css';
|
||||
@import '../node_modules/@reach/dialog/styles.css';
|
||||
@import '../../ui-components/src/file-opener/file-opener';
|
||||
@import './!(lib)*/**/*';
|
||||
|
||||
@@ -24,6 +24,7 @@
|
||||
"@packages/reporter": "*",
|
||||
"@packages/socket": "*",
|
||||
"@packages/web-config": "*",
|
||||
"@reach/dialog": "0.10.5",
|
||||
"ansi-to-html": "0.6.14",
|
||||
"babel-plugin-prismjs": "1.0.2",
|
||||
"bluebird": "3.5.3",
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
@import 'lib/mixins';
|
||||
@import 'lib/fonts';
|
||||
$cy-tooltip-class: 'cy-tooltip';
|
||||
@import '../../node_modules/@cypress/react-tooltip/dist/tooltip.scss';
|
||||
@import '../node_modules/@cypress/react-tooltip/dist/tooltip.scss';
|
||||
@import 'lib/base';
|
||||
@import 'lib/shared';
|
||||
@import '!(lib)*/**/!(selector-playground.scss)';
|
||||
|
||||
@@ -19,6 +19,7 @@
|
||||
"@babel/plugin-proposal-decorators": "7.8.3",
|
||||
"@babel/preset-env": "7.9.0",
|
||||
"@babel/preset-react": "7.9.4",
|
||||
"@cypress/react-tooltip": "0.5.3",
|
||||
"@cypress/webpack-preprocessor": "*",
|
||||
"@fortawesome/fontawesome-free": "5.12.1",
|
||||
"@reach/dialog": "0.10.5",
|
||||
|
||||
@@ -2,7 +2,6 @@ import _ from 'lodash'
|
||||
import { Dialog } from '@reach/dialog'
|
||||
import { action } from 'mobx'
|
||||
import { observer, useLocalStore } from 'mobx-react'
|
||||
// @ts-ignore
|
||||
import Tooltip from '@cypress/react-tooltip'
|
||||
|
||||
import cs from 'classnames'
|
||||
|
||||
Reference in New Issue
Block a user