teraslice-test-harness 1.1.0 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  > A helpful library for testing teraslice jobs, operations, and other components.
6
6
 
7
- This a package within the [Teraslice](https://github.com/terascope/teraslice) monorepo. See our [documentation](https://terascope.github.io/teraslice/docs/packages/teraslice-test-harness/overview) for more information or the [issues](https://github.com/terascope/teraslice/issues?q=is%3Aopen+is%3Aissue+label%3Apkg%2Fteraslice-test-harness) associated with this package
7
+ This is a package within the [Teraslice](https://github.com/terascope/teraslice) monorepo. See our [documentation](https://terascope.github.io/teraslice/docs/packages/teraslice-test-harness/overview) for more information or the [issues](https://github.com/terascope/teraslice/issues?q=is%3Aopen+is%3Aissue+label%3Apkg%2Fteraslice-test-harness) associated with this package
8
8
 
9
9
  ## Contributing
10
10
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "teraslice-test-harness",
3
3
  "displayName": "Teraslice Test Harness",
4
- "version": "1.1.0",
4
+ "version": "1.2.0",
5
5
  "description": "A helpful library for testing teraslice jobs, operations, and other components.",
6
6
  "homepage": "https://github.com/terascope/teraslice/tree/master/packages/teraslice-test-harness#readme",
7
7
  "bugs": {
@@ -26,20 +26,20 @@
26
26
  "scripts": {
27
27
  "build": "tsc --build",
28
28
  "build:watch": "yarn build --watch",
29
- "test": "NODE_OPTIONS='--experimental-vm-modules' ts-scripts test . --",
30
- "test:debug": "NODE_OPTIONS='--experimental-vm-modules' ts-scripts test --debug . --",
31
- "test:watch": "NODE_OPTIONS='--experimental-vm-modules' ts-scripts test --watch . --"
29
+ "test": "ts-scripts test . --",
30
+ "test:debug": "ts-scripts test --debug . --",
31
+ "test:watch": "ts-scripts test --watch . --"
32
32
  },
33
33
  "dependencies": {
34
- "@terascope/fetch-github-release": "^0.8.10",
34
+ "@terascope/fetch-github-release": "^1.0.0",
35
35
  "decompress": "^4.2.1",
36
36
  "fs-extra": "^11.2.0"
37
37
  },
38
38
  "devDependencies": {
39
- "@terascope/job-components": "^1.1.0"
39
+ "@terascope/job-components": "^1.2.0"
40
40
  },
41
41
  "peerDependencies": {
42
- "@terascope/job-components": ">=1.1.0"
42
+ "@terascope/job-components": ">=1.2.0"
43
43
  },
44
44
  "engines": {
45
45
  "node": ">=14.17.0",