remove stray circleci line, more CLI types comments

This commit is contained in:
Gleb Bahmutov
2019-03-05 13:09:50 -05:00
parent f81dc7a6b2
commit 83d35d3725
3 changed files with 7 additions and 3 deletions
+6 -1
View File
@@ -7,8 +7,13 @@ const { join } = require('path')
shell.set('-v') // verbose
shell.set('-e') // any error is fatal
// we include the TypeScript definitions for the bundled 3rd party tools
// We include the TypeScript definitions for the bundled 3rd party tools
// thus we need to copy them from "dev" dependencies into our types folder
// and we need to sometimes tweak these types files to use relative paths
// This ensures that globals like Cypress.$, Cypress._ etc are property typed
// yet we do not install "@types/.." packages with "npm install cypress"
// because they can conflict with user's own libraries
includeTypes.forEach((folder) => {
const source = join('node_modules', '@types', folder)