mirror of
https://github.com/cypress-io/cypress.git
synced 2026-02-10 17:20:11 -06:00
* chore: update build-npm-modules script * chore: update build-npm-modules script * chore: update build-npm-modules script * chore: update build-npm-modules script * [run ci] * we can't clean without building after * 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 * run with cache * fix outputs for cli * actually fix outputs * test with cache * chore: remove check-ts from Gulp and use Nx * try limiting concurrency * try concurrency 1 * add check-ts to packages where it is missing --------- Co-authored-by: jordanpowell88 <jordan@jpdesigning.com>
30 lines
711 B
JSON
30 lines
711 B
JSON
{
|
|
"name": "@tooling/packherd",
|
|
"version": "0.0.0-development",
|
|
"description": "Herds all dependencies reachable from an entry and packs them.",
|
|
"private": true,
|
|
"main": "dist/packherd.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"check-ts": "tsc --noEmit",
|
|
"clean-deps": "rimraf node_modules",
|
|
"clean": "rimraf dist",
|
|
"test": "yarn test-integration",
|
|
"test-integration": "mocha --config ./test/.mocharc.js",
|
|
"watch": "tsc --watch"
|
|
},
|
|
"dependencies": {
|
|
"debug": "^4.3.4",
|
|
"esbuild": "^0.15.3"
|
|
},
|
|
"devDependencies": {
|
|
"@packages/ts": "0.0.0-development",
|
|
"mocha": "7.0.1"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"src/packherd.ts"
|
|
],
|
|
"types": "src/packherd.ts"
|
|
}
|