@fluidframework/merge-tree 1.4.0-111997 → 1.4.0-115997

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 (2) hide show
  1. package/.eslintrc.js +10 -1
  2. package/package.json +18 -17
package/.eslintrc.js CHANGED
@@ -16,5 +16,14 @@ module.exports = {
16
16
  "keyword-spacing": "off", // Off because it conflicts with typescript-formatter
17
17
  "no-case-declarations": "off",
18
18
  "prefer-arrow/prefer-arrow-functions": "off"
19
- }
19
+ },
20
+ overrides: [
21
+ {
22
+ // Rules only for type validation files
23
+ files: ["**/types/*validate*Previous*.ts"],
24
+ rules: {
25
+ "@typescript-eslint/comma-spacing": "off",
26
+ },
27
+ },
28
+ ],
20
29
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluidframework/merge-tree",
3
- "version": "1.4.0-111997",
3
+ "version": "1.4.0-115997",
4
4
  "description": "Merge tree",
5
5
  "homepage": "https://fluidframework.com",
6
6
  "repository": {
@@ -34,9 +34,8 @@
34
34
  "test:mocha": "mocha --ignore 'dist/test/types/*' --recursive dist/test --exit -r node_modules/@fluidframework/mocha-test-setup -r source-map-support/register --unhandled-rejections=strict",
35
35
  "test:mocha:verbose": "cross-env FLUID_TEST_VERBOSE=1 npm run test:mocha",
36
36
  "tsc": "tsc",
37
- "tsfmt": "tsfmt --verify",
38
- "tsfmt:fix": "tsfmt --replace",
39
- "typetests:gen": "fluid-type-validator -g -d ."
37
+ "typetests:gen": "flub generate typetests --generate --dir . --no-generateInName",
38
+ "typetests:prepare": "flub generate typetests --prepare --dir . --pin"
40
39
  },
41
40
  "nyc": {
42
41
  "all": true,
@@ -61,23 +60,23 @@
61
60
  "dependencies": {
62
61
  "@fluidframework/common-definitions": "^0.20.1",
63
62
  "@fluidframework/common-utils": "^0.32.1",
64
- "@fluidframework/container-definitions": "1.4.0-111997",
65
- "@fluidframework/container-utils": "1.4.0-111997",
66
- "@fluidframework/core-interfaces": "1.4.0-111997",
67
- "@fluidframework/datastore-definitions": "1.4.0-111997",
63
+ "@fluidframework/container-definitions": "1.4.0-115997",
64
+ "@fluidframework/container-utils": "1.4.0-115997",
65
+ "@fluidframework/core-interfaces": "1.4.0-115997",
66
+ "@fluidframework/datastore-definitions": "1.4.0-115997",
68
67
  "@fluidframework/protocol-definitions": "^0.1028.2000",
69
- "@fluidframework/runtime-definitions": "1.4.0-111997",
70
- "@fluidframework/runtime-utils": "1.4.0-111997",
71
- "@fluidframework/shared-object-base": "1.4.0-111997",
72
- "@fluidframework/telemetry-utils": "1.4.0-111997"
68
+ "@fluidframework/runtime-definitions": "1.4.0-115997",
69
+ "@fluidframework/runtime-utils": "1.4.0-115997",
70
+ "@fluidframework/shared-object-base": "1.4.0-115997",
71
+ "@fluidframework/telemetry-utils": "1.4.0-115997"
73
72
  },
74
73
  "devDependencies": {
75
74
  "@fluidframework/build-common": "^0.24.0",
76
- "@fluidframework/build-tools": "^0.2.74327",
75
+ "@fluidframework/build-tools": "^0.6.0-110101",
77
76
  "@fluidframework/eslint-config-fluid": "^0.28.2000",
78
- "@fluidframework/merge-tree-previous": "npm:@fluidframework/merge-tree@^1.2.0",
79
- "@fluidframework/mocha-test-setup": "1.4.0-111997",
80
- "@fluidframework/test-runtime-utils": "1.4.0-111997",
77
+ "@fluidframework/merge-tree-previous": "npm:@fluidframework/merge-tree@1.3.1",
78
+ "@fluidframework/mocha-test-setup": "1.4.0-115997",
79
+ "@fluidframework/test-runtime-utils": "1.4.0-115997",
81
80
  "@microsoft/api-extractor": "^7.22.2",
82
81
  "@rushstack/eslint-config": "^2.5.1",
83
82
  "@types/diff": "^3.5.1",
@@ -98,7 +97,9 @@
98
97
  "typescript-formatter": "7.1.0"
99
98
  },
100
99
  "typeValidation": {
101
- "version": "1.3.0",
100
+ "version": "1.4.0",
101
+ "baselineRange": "~1.3.0",
102
+ "baselineVersion": "1.3.1",
102
103
  "broken": {}
103
104
  }
104
105
  }