@fluidframework/fluid-runner 2.0.0-internal.3.2.2 → 2.0.0-internal.3.3.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.
Files changed (1) hide show
  1. package/package.json +17 -18
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluidframework/fluid-runner",
3
- "version": "2.0.0-internal.3.2.2",
3
+ "version": "2.0.0-internal.3.3.1",
4
4
  "description": "Utility for running various functionality inside a Fluid Framework environment",
5
5
  "homepage": "https://fluidframework.com",
6
6
  "repository": {
@@ -36,24 +36,25 @@
36
36
  "temp-directory": "nyc/.nyc_output"
37
37
  },
38
38
  "dependencies": {
39
- "@fluidframework/aqueduct": ">=2.0.0-internal.3.2.2 <2.0.0-internal.4.0.0",
39
+ "@fluidframework/aqueduct": ">=2.0.0-internal.3.3.1 <2.0.0-internal.4.0.0",
40
40
  "@fluidframework/common-definitions": "^0.20.1",
41
- "@fluidframework/container-definitions": ">=2.0.0-internal.3.2.2 <2.0.0-internal.4.0.0",
42
- "@fluidframework/container-loader": ">=2.0.0-internal.3.2.2 <2.0.0-internal.4.0.0",
43
- "@fluidframework/core-interfaces": ">=2.0.0-internal.3.2.2 <2.0.0-internal.4.0.0",
44
- "@fluidframework/driver-definitions": ">=2.0.0-internal.3.2.2 <2.0.0-internal.4.0.0",
45
- "@fluidframework/odsp-driver": ">=2.0.0-internal.3.2.2 <2.0.0-internal.4.0.0",
46
- "@fluidframework/odsp-driver-definitions": ">=2.0.0-internal.3.2.2 <2.0.0-internal.4.0.0",
47
- "@fluidframework/telemetry-utils": ">=2.0.0-internal.3.2.2 <2.0.0-internal.4.0.0",
41
+ "@fluidframework/container-definitions": ">=2.0.0-internal.3.3.1 <2.0.0-internal.4.0.0",
42
+ "@fluidframework/container-loader": ">=2.0.0-internal.3.3.1 <2.0.0-internal.4.0.0",
43
+ "@fluidframework/core-interfaces": ">=2.0.0-internal.3.3.1 <2.0.0-internal.4.0.0",
44
+ "@fluidframework/driver-definitions": ">=2.0.0-internal.3.3.1 <2.0.0-internal.4.0.0",
45
+ "@fluidframework/odsp-driver": ">=2.0.0-internal.3.3.1 <2.0.0-internal.4.0.0",
46
+ "@fluidframework/odsp-driver-definitions": ">=2.0.0-internal.3.3.1 <2.0.0-internal.4.0.0",
47
+ "@fluidframework/telemetry-utils": ">=2.0.0-internal.3.3.1 <2.0.0-internal.4.0.0",
48
48
  "json2csv": "^5.0.7",
49
49
  "yargs": "13.2.2"
50
50
  },
51
51
  "devDependencies": {
52
- "@fluid-tools/build-cli": "^0.10.0",
52
+ "@fluid-tools/build-cli": "^0.12.0",
53
53
  "@fluidframework/build-common": "^1.1.0",
54
+ "@fluidframework/build-tools": "^0.12.0",
54
55
  "@fluidframework/eslint-config-fluid": "^2.0.0",
55
- "@fluidframework/fluid-runner-previous": "npm:@fluidframework/fluid-runner@2.0.0-internal.3.1.0",
56
- "@fluidframework/mocha-test-setup": ">=2.0.0-internal.3.2.2 <2.0.0-internal.4.0.0",
56
+ "@fluidframework/fluid-runner-previous": "npm:@fluidframework/fluid-runner@2.0.0-internal.3.2.0",
57
+ "@fluidframework/mocha-test-setup": ">=2.0.0-internal.3.3.1 <2.0.0-internal.4.0.0",
57
58
  "@rushstack/eslint-config": "^2.5.1",
58
59
  "@types/mocha": "^9.1.1",
59
60
  "@types/node": "^14.18.36",
@@ -68,16 +69,12 @@
68
69
  "typescript": "~4.5.5"
69
70
  },
70
71
  "typeValidation": {
71
- "version": "2.0.0-internal.3.2.0",
72
- "previousVersionStyle": "~previousMinor",
73
- "baselineRange": ">=2.0.0-internal.3.1.0 <2.0.0-internal.3.2.0",
74
- "baselineVersion": "2.0.0-internal.3.1.0",
75
72
  "broken": {}
76
73
  },
77
74
  "scripts": {
78
75
  "build": "concurrently npm:build:compile npm:lint",
79
76
  "build:commonjs": "npm run tsc && npm run build:test",
80
- "build:compile": "concurrently npm:build:commonjs npm:build:esnext",
77
+ "build:compile": "npm run typetests:gen && concurrently npm:build:commonjs npm:build:esnext",
81
78
  "build:esnext": "tsc --project ./tsconfig.esnext.json",
82
79
  "build:full": "npm run build",
83
80
  "build:full:compile": "npm run build:compile",
@@ -94,6 +91,8 @@
94
91
  "test:coverage": "nyc npm test -- --reporter xunit --reporter-option output=nyc/junit-report.xml",
95
92
  "test:mocha": "mocha --ignore 'dist/test/types/*' --recursive dist/test -r node_modules/@fluidframework/mocha-test-setup --unhandled-rejections=strict",
96
93
  "test:mocha:verbose": "cross-env FLUID_TEST_VERBOSE=1 npm run test:mocha",
97
- "tsc": "tsc"
94
+ "tsc": "tsc",
95
+ "typetests:gen": "fluid-type-test-generator",
96
+ "typetests:prepare": "flub generate typetests --prepare --dir . --pin"
98
97
  }
99
98
  }