@terascope/scripts 1.7.1 → 1.9.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 (38) hide show
  1. package/dist/src/cmds/bump-asset.js.map +1 -1
  2. package/dist/src/cmds/bump.js.map +1 -1
  3. package/dist/src/cmds/docs.js.map +1 -1
  4. package/dist/src/cmds/images.js.map +1 -1
  5. package/dist/src/cmds/k8s-env.js.map +1 -1
  6. package/dist/src/cmds/publish.js.map +1 -1
  7. package/dist/src/cmds/test.js.map +1 -1
  8. package/dist/src/helpers/args.js.map +1 -1
  9. package/dist/src/helpers/bump/index.js.map +1 -1
  10. package/dist/src/helpers/bump/utils.js.map +1 -1
  11. package/dist/src/helpers/config.d.ts.map +1 -1
  12. package/dist/src/helpers/config.js.map +1 -1
  13. package/dist/src/helpers/doc-builder/index.js.map +1 -1
  14. package/dist/src/helpers/doc-builder/overview.js.map +1 -1
  15. package/dist/src/helpers/doc-builder/sidebar.js.map +1 -1
  16. package/dist/src/helpers/doc-builder/typedoc.js.map +1 -1
  17. package/dist/src/helpers/images/index.js.map +1 -1
  18. package/dist/src/helpers/k8s-env/index.js.map +1 -1
  19. package/dist/src/helpers/k8s-env/k8s.d.ts +0 -1
  20. package/dist/src/helpers/k8s-env/k8s.d.ts.map +1 -1
  21. package/dist/src/helpers/k8s-env/k8s.js.map +1 -1
  22. package/dist/src/helpers/kind.js.map +1 -1
  23. package/dist/src/helpers/mapper.js.map +1 -1
  24. package/dist/src/helpers/misc.js.map +1 -1
  25. package/dist/src/helpers/packages.js.map +1 -1
  26. package/dist/src/helpers/publish/index.js +3 -10
  27. package/dist/src/helpers/publish/index.js.map +1 -1
  28. package/dist/src/helpers/publish/utils.js.map +1 -1
  29. package/dist/src/helpers/scripts.d.ts +2 -3
  30. package/dist/src/helpers/scripts.d.ts.map +1 -1
  31. package/dist/src/helpers/scripts.js +2 -22
  32. package/dist/src/helpers/scripts.js.map +1 -1
  33. package/dist/src/helpers/sync/utils.js.map +1 -1
  34. package/dist/src/helpers/test-runner/index.js.map +1 -1
  35. package/dist/src/helpers/test-runner/services.js.map +1 -1
  36. package/dist/src/helpers/test-runner/tracker.js.map +1 -1
  37. package/dist/src/helpers/test-runner/utils.js.map +1 -1
  38. package/package.json +85 -85
package/package.json CHANGED
@@ -1,87 +1,87 @@
1
1
  {
2
- "name": "@terascope/scripts",
3
- "displayName": "Scripts",
4
- "version": "1.7.1",
5
- "description": "A collection of terascope monorepo scripts",
6
- "homepage": "https://github.com/terascope/teraslice/tree/master/packages/scripts#readme",
7
- "bugs": {
8
- "url": "https://github.com/terascope/teraslice/issues"
9
- },
10
- "repository": "git@github.com:terascope/teraslice.git",
11
- "license": "MIT",
12
- "author": "Terascope, LLC <info@terascope.io>",
13
- "type": "module",
14
- "main": "dist/src/index.js",
15
- "typings": "dist/src/index.d.ts",
16
- "bin": {
17
- "ts-scripts": "./bin/ts-scripts.js"
18
- },
19
- "files": [
20
- "dist/src/**/*",
21
- "bin/*"
22
- ],
23
- "scripts": {
24
- "build": "tsc --build",
25
- "build:watch": "yarn build --watch",
26
- "test": "ts-scripts test . --",
27
- "test:debug": "ts-scripts test --debug . --",
28
- "test:watch": "ts-scripts test --watch . --"
29
- },
30
- "resolutions": {
31
- "ms": "~2.1.3",
32
- "typescript": "~5.2.2"
33
- },
34
- "dependencies": {
35
- "@kubernetes/client-node": "~0.22.3",
36
- "@terascope/utils": "~1.6.0",
37
- "codecov": "~3.8.3",
38
- "execa": "~9.5.2",
39
- "fs-extra": "~11.2.0",
40
- "globby": "~14.0.2",
41
- "got": "~13.0.0",
42
- "ip": "~2.0.1",
43
- "js-yaml": "~4.1.0",
44
- "kafkajs": "~2.2.4",
45
- "micromatch": "~4.0.8",
46
- "mnemonist": "~0.39.8",
47
- "ms": "~2.1.3",
48
- "package-json": "~10.0.1",
49
- "package-up": "~5.0.0",
50
- "semver": "~7.6.3",
51
- "signale": "~1.4.0",
52
- "sort-package-json": "~2.12.0",
53
- "toposort": "~2.0.2",
54
- "typedoc": "~0.25.13",
55
- "typedoc-plugin-markdown": "~4.0.3",
56
- "yargs": "~17.7.2"
57
- },
58
- "devDependencies": {
59
- "@types/ip": "~1.1.3",
60
- "@types/micromatch": "~4.0.9",
61
- "@types/ms": "~0.7.34",
62
- "@types/semver": "~7.5.6",
63
- "@types/signale": "~1.4.7",
64
- "@types/toposort": "~2.0.7"
65
- },
66
- "peerDependencies": {
67
- "typescript": "~5.2.2"
68
- },
69
- "peerDependenciesMeta": {
70
- "typescript": {
71
- "optional": true
72
- }
73
- },
74
- "engines": {
75
- "node": ">=18.18.0",
76
- "yarn": ">=1.22.19"
77
- },
78
- "publishConfig": {
79
- "access": "public",
80
- "registry": "https://registry.npmjs.org/"
81
- },
82
- "srcMain": "src/index.ts",
83
- "terascope": {
84
- "enableTypedoc": false,
85
- "testSuite": "unit"
2
+ "name": "@terascope/scripts",
3
+ "displayName": "Scripts",
4
+ "version": "1.9.0",
5
+ "description": "A collection of terascope monorepo scripts",
6
+ "homepage": "https://github.com/terascope/teraslice/tree/master/packages/scripts#readme",
7
+ "bugs": {
8
+ "url": "https://github.com/terascope/teraslice/issues"
9
+ },
10
+ "repository": "git@github.com:terascope/teraslice.git",
11
+ "license": "MIT",
12
+ "author": "Terascope, LLC <info@terascope.io>",
13
+ "type": "module",
14
+ "main": "dist/src/index.js",
15
+ "typings": "dist/src/index.d.ts",
16
+ "bin": {
17
+ "ts-scripts": "./bin/ts-scripts.js"
18
+ },
19
+ "files": [
20
+ "dist/src/**/*",
21
+ "bin/*"
22
+ ],
23
+ "scripts": {
24
+ "build": "tsc --build",
25
+ "build:watch": "yarn build --watch",
26
+ "test": "ts-scripts test . --",
27
+ "test:debug": "ts-scripts test --debug . --",
28
+ "test:watch": "ts-scripts test --watch . --"
29
+ },
30
+ "resolutions": {
31
+ "ms": "~2.1.3",
32
+ "typescript": "~5.7.2"
33
+ },
34
+ "dependencies": {
35
+ "@kubernetes/client-node": "~0.22.3",
36
+ "@terascope/utils": "~1.7.1",
37
+ "codecov": "~3.8.3",
38
+ "execa": "~9.5.2",
39
+ "fs-extra": "~11.2.0",
40
+ "globby": "~14.0.2",
41
+ "got": "~13.0.0",
42
+ "ip": "~2.0.1",
43
+ "js-yaml": "~4.1.0",
44
+ "kafkajs": "~2.2.4",
45
+ "micromatch": "~4.0.8",
46
+ "mnemonist": "~0.39.8",
47
+ "ms": "~2.1.3",
48
+ "package-json": "~10.0.1",
49
+ "package-up": "~5.0.0",
50
+ "semver": "~7.6.3",
51
+ "signale": "~1.4.0",
52
+ "sort-package-json": "~2.12.0",
53
+ "toposort": "~2.0.2",
54
+ "typedoc": "~0.25.13",
55
+ "typedoc-plugin-markdown": "~4.0.3",
56
+ "yargs": "~17.7.2"
57
+ },
58
+ "devDependencies": {
59
+ "@types/ip": "~1.1.3",
60
+ "@types/micromatch": "~4.0.9",
61
+ "@types/ms": "~0.7.34",
62
+ "@types/semver": "~7.5.6",
63
+ "@types/signale": "~1.4.7",
64
+ "@types/toposort": "~2.0.7"
65
+ },
66
+ "peerDependencies": {
67
+ "typescript": "~5.7.2"
68
+ },
69
+ "peerDependenciesMeta": {
70
+ "typescript": {
71
+ "optional": true
86
72
  }
87
- }
73
+ },
74
+ "engines": {
75
+ "node": ">=18.18.0",
76
+ "yarn": ">=1.22.19"
77
+ },
78
+ "publishConfig": {
79
+ "access": "public",
80
+ "registry": "https://registry.npmjs.org/"
81
+ },
82
+ "srcMain": "src/index.ts",
83
+ "terascope": {
84
+ "enableTypedoc": false,
85
+ "testSuite": "unit"
86
+ }
87
+ }