mirror of
https://github.com/cypress-io/cypress.git
synced 2026-05-06 23:10:22 -05:00
4c11731ee1
* 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>
88 lines
2.5 KiB
JSON
88 lines
2.5 KiB
JSON
{
|
|
"name": "@cypress/webpack-preprocessor",
|
|
"version": "0.0.0-development",
|
|
"description": "Cypress preprocessor for bundling JavaScript via webpack",
|
|
"private": false,
|
|
"main": "dist",
|
|
"scripts": {
|
|
"build": "rimraf dist && tsc || echo 'built, with errors'",
|
|
"deps": "deps-ok && dependency-check --no-dev .",
|
|
"secure": "nsp check",
|
|
"semantic-release": "semantic-release",
|
|
"size": "npm pack --dry",
|
|
"test": "node ./scripts/test-webpack-5.js",
|
|
"test-debug": "node --inspect --debug-brk ./node_modules/.bin/_mocha",
|
|
"test-e2e": "mocha test/e2e/*.spec.*",
|
|
"test-unit": "mocha test/unit/*.spec.*",
|
|
"test-watch": "yarn test-unit & chokidar '**/*.(js|ts)' 'test/unit/*.(js|ts)' -c 'yarn test-unit'",
|
|
"check-ts": "tsc --noEmit",
|
|
"watch": "rimraf dist && tsc --watch",
|
|
"lint": "eslint --ext .js,.jsx,.ts,.tsx,.json, ."
|
|
},
|
|
"dependencies": {
|
|
"bluebird": "3.7.1",
|
|
"debug": "^4.3.4",
|
|
"lodash": "^4.17.20"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.22.9",
|
|
"@babel/preset-env": "^7.22.9",
|
|
"@types/mocha": "9.0.0",
|
|
"@types/webpack": "^4.41.12",
|
|
"babel-loader": "^9.1.3",
|
|
"chai": "4.1.2",
|
|
"chalk": "3.0.0",
|
|
"chokidar-cli": "2.1.0",
|
|
"common-tags": "^1.8.2",
|
|
"cypress": "0.0.0-development",
|
|
"dependency-check": "2.9.1",
|
|
"deps-ok": "1.4.1",
|
|
"find-webpack": "1.5.0",
|
|
"fs-extra": "^10.1.0",
|
|
"mocha": "^7.1.0",
|
|
"mockery": "2.1.0",
|
|
"proxyquire": "2.1.3",
|
|
"semantic-release": "19.0.3",
|
|
"sinon": "^9.0.0",
|
|
"sinon-chai": "^3.5.0",
|
|
"snap-shot-it": "7.9.2",
|
|
"ts-node": "^10.9.1",
|
|
"webpack": "^5.88.2"
|
|
},
|
|
"peerDependencies": {
|
|
"@babel/core": "^7.0.1",
|
|
"@babel/preset-env": "^7.0.0",
|
|
"babel-loader": "^8.3 || ^9",
|
|
"webpack": "^4 || ^5"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"types": "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-preprocessor#readme",
|
|
"bugs": "https://github.com/cypress-io/cypress/issues/new?assignees=&labels=npm%3A%20%40cypress%2Fwebpack-preprocessor&template=1-bug-report.md&title=",
|
|
"keywords": [
|
|
"cypress",
|
|
"cypress-plugin",
|
|
"cypress-preprocessor",
|
|
"webpack"
|
|
],
|
|
"nx": {
|
|
"targets": {
|
|
"build": {
|
|
"dependsOn": [
|
|
"!@cypress/react18:build"
|
|
],
|
|
"outputs": [
|
|
"{projectRoot}/dist"
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|