lage/packages/reporters/package.json

36 строки
836 B
JSON
Исходник Обычный вид История

@lage-run/reporter - Adds Reporter (#322) * scheduler init checkin * simple scheduler is functionality complete * polish on types * adding a simple test * simple scheduler test * WIP * wip: working on abortsignals * Figured out the abort controller pattern * abort signal handled! * added a way for targets to specify a node option * learn how to launch npm * only run npm script when there IS a script in the package.json * adding formatduration test * clearing up responsibility * made sure the abort signal works in a unit test * wip on testing npmscriptrunner * abort signal test work! * testing the environment variables * wrapped target tests started * test that wrapped target can cache * tests written about aborting earlier vs not * Change files * comments * less exposed functions, and added more comments * adding a cmd file for the fakeNpm * adding fixes for windows to be able to test this * use a matrix to make sure builds and tests are okay with all os's * fixing formatting according to prettier * updating test to exhibit correct behavior * fixed tests to be able to run very quickly and in parallel * Don't publish monorepo-scripts! * make sure to ignore the generated and node_modules with prettier * forget about enforcing the endofline * init check in of reporters * fixing up adoreporter * beginnings of an interactive reporter * WIP * WIP * WIP 2 * converted npmlogreporter * updating npmlogreporter with test * npmlog testing * adding some tests for reporters * adding jsonreporter test * better formatting for the snapshots * ado reporter tests * adding tests for adoreporter * updated format * fix format * updated the summary that is emitted by scheduler * restore * Change files
2022-08-12 02:48:46 +03:00
{
"name": "@lage-run/reporters",
2023-01-31 21:24:39 +03:00
"version": "1.0.0",
@lage-run/reporter - Adds Reporter (#322) * scheduler init checkin * simple scheduler is functionality complete * polish on types * adding a simple test * simple scheduler test * WIP * wip: working on abortsignals * Figured out the abort controller pattern * abort signal handled! * added a way for targets to specify a node option * learn how to launch npm * only run npm script when there IS a script in the package.json * adding formatduration test * clearing up responsibility * made sure the abort signal works in a unit test * wip on testing npmscriptrunner * abort signal test work! * testing the environment variables * wrapped target tests started * test that wrapped target can cache * tests written about aborting earlier vs not * Change files * comments * less exposed functions, and added more comments * adding a cmd file for the fakeNpm * adding fixes for windows to be able to test this * use a matrix to make sure builds and tests are okay with all os's * fixing formatting according to prettier * updating test to exhibit correct behavior * fixed tests to be able to run very quickly and in parallel * Don't publish monorepo-scripts! * make sure to ignore the generated and node_modules with prettier * forget about enforcing the endofline * init check in of reporters * fixing up adoreporter * beginnings of an interactive reporter * WIP * WIP * WIP 2 * converted npmlogreporter * updating npmlogreporter with test * npmlog testing * adding some tests for reporters * adding jsonreporter test * better formatting for the snapshots * ado reporter tests * adding tests for adoreporter * updated format * fix format * updated the summary that is emitted by scheduler * restore * Change files
2022-08-12 02:48:46 +03:00
"description": "Log reporters for Lage",
"repository": {
"url": "https://github.com/microsoft/lage"
},
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"start": "tsc -w --preserveWatchOutput",
"test": "jest",
"lint": "monorepo-scripts lint"
@lage-run/reporter - Adds Reporter (#322) * scheduler init checkin * simple scheduler is functionality complete * polish on types * adding a simple test * simple scheduler test * WIP * wip: working on abortsignals * Figured out the abort controller pattern * abort signal handled! * added a way for targets to specify a node option * learn how to launch npm * only run npm script when there IS a script in the package.json * adding formatduration test * clearing up responsibility * made sure the abort signal works in a unit test * wip on testing npmscriptrunner * abort signal test work! * testing the environment variables * wrapped target tests started * test that wrapped target can cache * tests written about aborting earlier vs not * Change files * comments * less exposed functions, and added more comments * adding a cmd file for the fakeNpm * adding fixes for windows to be able to test this * use a matrix to make sure builds and tests are okay with all os's * fixing formatting according to prettier * updating test to exhibit correct behavior * fixed tests to be able to run very quickly and in parallel * Don't publish monorepo-scripts! * make sure to ignore the generated and node_modules with prettier * forget about enforcing the endofline * init check in of reporters * fixing up adoreporter * beginnings of an interactive reporter * WIP * WIP * WIP 2 * converted npmlogreporter * updating npmlogreporter with test * npmlog testing * adding some tests for reporters * adding jsonreporter test * better formatting for the snapshots * ado reporter tests * adding tests for adoreporter * updated format * fix format * updated the summary that is emitted by scheduler * restore * Change files
2022-08-12 02:48:46 +03:00
},
"dependencies": {
2022-11-02 01:25:59 +03:00
"@lage-run/logger": "^1.2.2",
2023-01-18 21:18:35 +03:00
"@lage-run/scheduler-types": "^0.3.0",
2022-11-11 10:29:47 +03:00
"@lage-run/target-graph": "^0.6.1",
2023-01-18 21:18:35 +03:00
"@lage-run/format-hrtime": "^0.1.4",
"chalk": "^4.0.0",
"ansi-regex": "^5.0.1",
"gradient-string": "^2.0.1",
"ink": "^3.2.0",
"react": "^18.2.0"
@lage-run/reporter - Adds Reporter (#322) * scheduler init checkin * simple scheduler is functionality complete * polish on types * adding a simple test * simple scheduler test * WIP * wip: working on abortsignals * Figured out the abort controller pattern * abort signal handled! * added a way for targets to specify a node option * learn how to launch npm * only run npm script when there IS a script in the package.json * adding formatduration test * clearing up responsibility * made sure the abort signal works in a unit test * wip on testing npmscriptrunner * abort signal test work! * testing the environment variables * wrapped target tests started * test that wrapped target can cache * tests written about aborting earlier vs not * Change files * comments * less exposed functions, and added more comments * adding a cmd file for the fakeNpm * adding fixes for windows to be able to test this * use a matrix to make sure builds and tests are okay with all os's * fixing formatting according to prettier * updating test to exhibit correct behavior * fixed tests to be able to run very quickly and in parallel * Don't publish monorepo-scripts! * make sure to ignore the generated and node_modules with prettier * forget about enforcing the endofline * init check in of reporters * fixing up adoreporter * beginnings of an interactive reporter * WIP * WIP * WIP 2 * converted npmlogreporter * updating npmlogreporter with test * npmlog testing * adding some tests for reporters * adding jsonreporter test * better formatting for the snapshots * ado reporter tests * adding tests for adoreporter * updated format * fix format * updated the summary that is emitted by scheduler * restore * Change files
2022-08-12 02:48:46 +03:00
},
"devDependencies": {
"@types/react": "18.0.28",
"memory-streams": "0.1.3"
@lage-run/reporter - Adds Reporter (#322) * scheduler init checkin * simple scheduler is functionality complete * polish on types * adding a simple test * simple scheduler test * WIP * wip: working on abortsignals * Figured out the abort controller pattern * abort signal handled! * added a way for targets to specify a node option * learn how to launch npm * only run npm script when there IS a script in the package.json * adding formatduration test * clearing up responsibility * made sure the abort signal works in a unit test * wip on testing npmscriptrunner * abort signal test work! * testing the environment variables * wrapped target tests started * test that wrapped target can cache * tests written about aborting earlier vs not * Change files * comments * less exposed functions, and added more comments * adding a cmd file for the fakeNpm * adding fixes for windows to be able to test this * use a matrix to make sure builds and tests are okay with all os's * fixing formatting according to prettier * updating test to exhibit correct behavior * fixed tests to be able to run very quickly and in parallel * Don't publish monorepo-scripts! * make sure to ignore the generated and node_modules with prettier * forget about enforcing the endofline * init check in of reporters * fixing up adoreporter * beginnings of an interactive reporter * WIP * WIP * WIP 2 * converted npmlogreporter * updating npmlogreporter with test * npmlog testing * adding some tests for reporters * adding jsonreporter test * better formatting for the snapshots * ado reporter tests * adding tests for adoreporter * updated format * fix format * updated the summary that is emitted by scheduler * restore * Change files
2022-08-12 02:48:46 +03:00
},
"publishConfig": {
"access": "public"
}
}