@cucumber/query 7.0.0 → 7.0.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cucumber/query",
3
- "version": "7.0.0",
3
+ "version": "7.0.1",
4
4
  "description": "Cucumber Query - query messages",
5
5
  "main": "dist/src/index.js",
6
6
  "types": "dist/src/index.d.ts",
@@ -26,31 +26,32 @@
26
26
  },
27
27
  "homepage": "https://github.com/cucumber/cucumber#readme",
28
28
  "devDependencies": {
29
- "@cucumber/fake-cucumber": "^8.0.0",
30
- "@types/mocha": "^8.0.1",
31
- "@types/node": "^14.0.27",
32
- "@typescript-eslint/eslint-plugin": "^3.8.0",
33
- "@typescript-eslint/parser": "^3.8.0",
34
- "eslint": "^7.6.0",
35
- "eslint-config-prettier": "^6.11.0",
29
+ "@cucumber/fake-cucumber": "^9.0.0",
30
+ "@cucumber/gherkin": "^16.0.0",
31
+ "@cucumber/gherkin-utils": "^2.1.1",
32
+ "@types/mocha": "^8.2.0",
33
+ "@types/node": "^14.14.14",
34
+ "@typescript-eslint/eslint-plugin": "^4.10.0",
35
+ "@typescript-eslint/parser": "^4.10.0",
36
+ "core-js": "^3.8.1",
37
+ "eslint": "^7.15.0",
38
+ "eslint-config-prettier": "^7.0.0",
36
39
  "eslint-plugin-node": "^11.1.0",
37
- "eslint-plugin-prettier": "^3.1.4",
38
- "eslint-plugin-react": "^7.20.5",
39
- "json-schema": "^0.2.5",
40
- "mocha": "^8.1.1",
40
+ "eslint-plugin-prettier": "^3.3.0",
41
+ "eslint-plugin-react": "^7.21.5",
42
+ "mocha": "^8.2.1",
41
43
  "nyc": "^15.1.0",
42
- "prettier": "^2.0.5",
44
+ "prettier": "^2.2.1",
43
45
  "source-map-support": "^0.5.19",
44
- "ts-loader": "^8.0.2",
45
- "ts-node": "^8.10.2",
46
- "typescript": "^3.9.7"
46
+ "ts-loader": "^8.0.12",
47
+ "ts-node": "^9.1.1",
48
+ "typescript": "^4.1.3"
47
49
  },
48
50
  "files": [
49
51
  "*"
50
52
  ],
51
53
  "dependencies": {
52
- "@cucumber/gherkin": "^15.0.0",
53
- "@cucumber/messages": "^13.0.1",
54
+ "@cucumber/messages": "^13.2.1",
54
55
  "@teppeis/multimaps": "^1.1.0"
55
56
  },
56
57
  "directories": {
package/test/QueryTest.ts CHANGED
@@ -1,5 +1,6 @@
1
1
  import 'source-map-support/register'
2
- import { GherkinStreams, Query as GherkinQuery } from '@cucumber/gherkin'
2
+ import { GherkinStreams } from '@cucumber/gherkin'
3
+ import { Query as GherkinQuery } from '@cucumber/gherkin-utils'
3
4
  import { IdGenerator, messages } from '@cucumber/messages'
4
5
  import { pipeline, Readable, Writable } from 'stream'
5
6
  import assert from 'assert'