Files
rrweb/turbo.json
Eoghan Murray 325a9f093e Update test commands (#1205)
* As per @Yun Feng: everyone has npm installed globally but maybe not yarn

* Add command to enable test result updating

* Default to running tests HEADLESS on rrweb

* Add command to build:all in a low memory environment

* Add a 'retest' command for when the code hasn't changed, but you are working on the test cases

* Add commands to reformat according to prettier. Named 'reformat' to indicate that we are doing a `--write`

* Update package.json

Co-authored-by: Yun Feng <yun.feng0817@gmail.com>

* Apply suggestions from code review

Co-authored-by: Yun Feng <yun.feng0817@gmail.com>

* Create few-turkeys-reflect.md

* Apply formatting changes

---------

Co-authored-by: Justin Halsall <Juice10@users.noreply.github.com>
Co-authored-by: Yun Feng <yun.feng0817@gmail.com>
2023-06-02 12:19:35 +02:00

22 lines
442 B
JSON

{
"$schema": "https://turborepo.org/schema.json",
"baseBranch": "origin/master",
"pipeline": {
"prepublish": {
"dependsOn": ["^prepublish"],
"outputs": ["lib/**", "es/**", "dist/**", "typings/**"]
},
"test": {},
"test:watch": {
"persistent": true
},
"test:update": {},
"dev": {
"dependsOn": ["^prepublish"],
"persistent": true
},
"lint": {},
"check-types": {}
}
}