mirror of
https://github.com/cypress-io/cypress.git
synced 2026-02-04 22:30:00 -06:00
* Revert "chore: simplify build script (#27547)" This reverts commit0a86ec686e. * Revert "chore: upgrade lerna to 6, cache build step (#26913)" This reverts commit9e60aeba8f. * [run ci] * chore: upgrade lerna to 6, cache build step (#26913) * chore: update build-npm-modules script * chore: update build-npm-modules script * chore: update build-npm-modules script * chore: update build-npm-modules script * chore: update lerna to 6 * [run ci] * try caching build step * we can't clean without building after * add dependencies on scripts for npm packages * update commands * add config for data-context build step * fix output configurations for npm packages, add gitignores * revert changes to config and data-context build steps * fix outputs * run with cache * fix outputs for cli * actually fix outputs * test with cache --------- Co-authored-by: astone123 <adams@cypress.io> * chore: simplify build script (#27547) * chore: simplify build script * update CI workflows * fix workflows * empty commit because Percy weirdness * chore: add driver, reporter, config as implicit dependencies for runner package (#27559) * run all workflows on branch * chore: parallelize test-binary-against-recipes CI step (#27570) * chore: fix some easy circular dependencies in dep graph (#27612) * chore: remove gulp tasks from postinstall (#27616) * empty commit * chore: minor improvements to node_modules_install (#27647) * chore: fix cypress:open and dev scripts * run with cache [run ci] * exclude mochaawesome assets from .yarnclean [run ci] * bump cache again [run ci] * run cached [run ci] * chore: do not cache cli build step [run ci] * update workflow command and docs for build-cli [run ci] * fix commands that use scope [run ci] * use different branch for publish repo [run ci] * percy weirdness? [run ci] * fix postbuild cli script [run ci] * try to remove typescript from production binary [run ci] * fix circular dependency [run ci] * try removing ts from node_modules [run ci] * remove typescript resolution [run ci] * remove redundant target scripts * update to lerna scoped commands * remove unneeded yarn in lerna command * try to fix Electron install in Windows workflow --------- Co-authored-by: Jordan <jordan@jpdesigning.com> Co-authored-by: Dave Kasper <dave.m.kasper@gmail.com>
70 lines
2.3 KiB
JSON
70 lines
2.3 KiB
JSON
{
|
|
"name": "@cypress/webpack-dev-server",
|
|
"version": "0.0.0-development",
|
|
"description": "Launches Webpack Dev Server for Component Testing",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"prebuild": "rimraf dist",
|
|
"build": "tsc || echo 'built, with type errors'",
|
|
"check-ts": "tsc --noEmit",
|
|
"dev": "tsc --watch",
|
|
"clean": "rimraf dist",
|
|
"cypress:run": "yarn cypress:run-cypress-in-cypress node ../../scripts/cypress run --project . --browser chrome",
|
|
"cypress:run-cypress-in-cypress": "cross-env CYPRESS_INTERNAL_E2E_TESTING_SELF_PARENT_PROJECT=1 HTTP_PROXY_TARGET_FOR_ORIGIN_REQUESTS=http://localhost:4455 CYPRESS_REMOTE_DEBUGGING_PORT=6666 TZ=America/New_York",
|
|
"cypress:open": "yarn cypress:run-cypress-in-cypress gulp open --project .",
|
|
"test": "yarn test-unit",
|
|
"test-unit": "mocha -r ts-node/register/transpile-only --config ./test/.mocharc.js",
|
|
"lint": "eslint --ext .js,.ts,.json, ."
|
|
},
|
|
"dependencies": {
|
|
"find-up": "6.3.0",
|
|
"fs-extra": "9.1.0",
|
|
"html-webpack-plugin-4": "npm:html-webpack-plugin@^4",
|
|
"html-webpack-plugin-5": "npm:html-webpack-plugin@^5",
|
|
"local-pkg": "0.4.1",
|
|
"semver": "^7.5.3",
|
|
"speed-measure-webpack-plugin": "1.4.2",
|
|
"tslib": "^2.3.1",
|
|
"webpack-dev-server": "^4.7.4",
|
|
"webpack-merge": "^5.4.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "18.17.5",
|
|
"@types/proxyquire": "^1.3.28",
|
|
"@types/speed-measure-webpack-plugin": "^1.3.4",
|
|
"@types/webpack-dev-server-3": "npm:@types/webpack-dev-server@^3",
|
|
"chai": "^4.3.6",
|
|
"dedent": "^0.7.0",
|
|
"mocha": "^9.2.2",
|
|
"proxyquire": "2.1.3",
|
|
"sinon": "^13.0.1",
|
|
"snap-shot-it": "^7.9.6",
|
|
"ts-node": "^10.9.1",
|
|
"webpack": "npm:webpack@^5",
|
|
"webpack-4": "npm:webpack@^4",
|
|
"webpack-dev-server-3": "npm:webpack-dev-server@^3"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/cypress-io/cypress.git"
|
|
},
|
|
"homepage": "https://github.com/cypress-io/cypress/tree/develop/npm/webpack-dev-server#readme",
|
|
"bugs": "https://github.com/cypress-io/cypress/issues/new?template=1-bug-report.md",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"nx": {
|
|
"targets": {
|
|
"build": {
|
|
"outputs": [
|
|
"{projectRoot}/dist"
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|