@testim/testim-cli 3.290.0 → 3.291.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 (4) hide show
  1. package/cli.js +3556 -3558
  2. package/cli.js.map +1 -1
  3. package/npm-shrinkwrap.json +392 -8228
  4. package/package.json +13 -11
package/package.json CHANGED
@@ -1,12 +1,14 @@
1
1
  {
2
2
  "name": "@testim/testim-cli",
3
- "version": "3.290.0",
3
+ "version": "3.291.0",
4
4
  "description": "Command line interface for running Testing on your CI",
5
5
  "author": "Oren Rubin",
6
- "contributors": [{
7
- "name": "Oren Rubin",
8
- "email": "oren@testim.io"
9
- }],
6
+ "contributors": [
7
+ {
8
+ "name": "Oren Rubin",
9
+ "email": "oren@testim.io"
10
+ }
11
+ ],
10
12
  "bugs": {
11
13
  "email": "info@testim.io"
12
14
  },
@@ -19,9 +21,6 @@
19
21
  "@types/selenium-webdriver": "4.0.9",
20
22
  "@types/validate-npm-package-name": "3.0.3",
21
23
  "bundle-deps": "1.0.0",
22
- "gulp": "4.0.2",
23
- "gulp-cli": "2.3.0",
24
- "gulp-json-editor": "2.5.6",
25
24
  "merge-stream": "2.0.0",
26
25
  "proxyquire": "2.1.3",
27
26
  "sinon": "9.0.2",
@@ -113,10 +112,10 @@
113
112
  },
114
113
  "scripts": {
115
114
  "test": "yarn test:pattern './src/**/*.test.[jt]s'",
116
- "test:pattern": "IS_UNIT_TEST=1 ../../node_modules/mocha/bin/_mocha --timeout 2000 --exit --recursive --exclude ./src/codim/template.[jt]s/tests/examples/**/*.test.[jt]s --watch-files 'src' -r ts-node/register/transpile-only -r tsconfig-paths/register",
115
+ "test:pattern": "IS_UNIT_TEST=1 ../../node_modules/mocha/bin/_mocha --timeout 2000 --exit --recursive --exclude ./src/codim/template.[jt]s/tests/examples/**/*.test.[jt]s --watch-files 'src' -r ts-node/register/transpile-only -r tsconfig-paths/register --reporter mocha-multi-reporters --reporter-options configFile=mochaReporterConfig.js",
117
116
  "test:cov": "nyc --reporter=lcov --reporter=text yarn test",
118
117
  "upload-bundle-s3": "ts-node-transpile-only scripts/upload.js",
119
- "prepare-version": "rm -rf ./deploy && mkdir -p deploy && gulp prepare-version-on-prem",
118
+ "prepare-version": "rm -rf ./deploy && mkdir -p deploy && tsx buildTool prepare-version-on-prem",
120
119
  "make-onprem-deps": "cp ../../yarn.lock deploy && cd deploy && yarn install --production && bundle-deps",
121
120
  "pack-onprem": "yarn prepare-version && yarn make-onprem-deps && cd deploy && npm pack && zip -r testim-cli.zip testim-cli-*.tgz",
122
121
  "pack-serve": "yarn pack-onprem && http-server deploy/",
@@ -124,5 +123,8 @@
124
123
  },
125
124
  "engines": {
126
125
  "node": ">= 14.0.0"
126
+ },
127
+ "data": {
128
+ "version": "3.291.0"
127
129
  }
128
- }
130
+ }