@mongosh/js-multiline-to-singleline 2.4.10 → 2.4.11

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.
package/.mocharc.json ADDED
@@ -0,0 +1,7 @@
1
+ {
2
+ "require": ["../../scripts/import-expansions.js", "ts-node/register"],
3
+ "timeout": 60000,
4
+ "reporter": "../../configs/mocha-config-mongosh/reporter.ts",
5
+ "spec": ["./{src,lib}/**/*.spec.ts"],
6
+ "exclude": ["**/node_modules/**"]
7
+ }
package/AUTHORS CHANGED
@@ -4,6 +4,8 @@ Anna Henningsen <anna@addaleax.net>
4
4
  dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
5
5
  Martin Rodriguez Reboredo <yakoyoku@gmail.com>
6
6
  Le Roux Bodenstein <lerouxb@gmail.com>
7
+ Himanshu Singh <himanshu.singhs@outlook.in>
8
+ Kevin Mas Ruiz <kevin.mas@hey.com>
7
9
  Gagik Amaryan <me@gagik.co>
8
10
  mongodb-devtools-bot[bot] <189715634+mongodb-devtools-bot[bot]@users.noreply.github.com>
9
11
  Ubuntu <ubuntu@ip-10-0-5-160.ec2.internal>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mongosh/js-multiline-to-singleline",
3
- "version": "2.4.10",
3
+ "version": "2.4.11",
4
4
  "description": "Make multiline JS into a single line",
5
5
  "main": "./lib/index.js",
6
6
  "repository": {
@@ -11,7 +11,7 @@
11
11
  "unsafe-perm": true
12
12
  },
13
13
  "scripts": {
14
- "test": "mocha -r \"../../scripts/import-expansions.js\" --timeout 60000 -r ts-node/register --reporter \"../../configs/mocha-config-mongosh/reporter.ts\" \"./{src,lib}/**/*.spec.ts\"",
14
+ "test": "mocha",
15
15
  "test-ci": "node ../../scripts/run-if-package-requested.js npm test",
16
16
  "test-coverage": "nyc --no-clean --cwd ../.. --reporter=none npm run test",
17
17
  "test-ci-coverage": "nyc --no-clean --cwd ../.. --reporter=none npm run test-ci",
@@ -47,5 +47,5 @@
47
47
  "eslint": "^7.25.0",
48
48
  "prettier": "^2.8.8"
49
49
  },
50
- "gitHead": "511befbaf032b589d7f3e81325e5e389d360cc3f"
50
+ "gitHead": "d2069810a846a535c51c88929224a57e49960778"
51
51
  }