@fluidframework/matrix 2.0.0-internal.2.1.2 → 2.0.0-internal.2.2.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/.eslintrc.js +1 -1
- package/dist/packageVersion.d.ts +1 -1
- package/dist/packageVersion.js +1 -1
- package/dist/packageVersion.js.map +1 -1
- package/lib/packageVersion.d.ts +1 -1
- package/lib/packageVersion.js +1 -1
- package/lib/packageVersion.js.map +1 -1
- package/package.json +22 -17
- package/prettier.config.cjs +8 -0
- package/src/packageVersion.ts +1 -1
package/.eslintrc.js
CHANGED
package/dist/packageVersion.d.ts
CHANGED
|
@@ -5,5 +5,5 @@
|
|
|
5
5
|
* THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY
|
|
6
6
|
*/
|
|
7
7
|
export declare const pkgName = "@fluidframework/matrix";
|
|
8
|
-
export declare const pkgVersion = "2.0.0-internal.2.1
|
|
8
|
+
export declare const pkgVersion = "2.0.0-internal.2.2.1";
|
|
9
9
|
//# sourceMappingURL=packageVersion.d.ts.map
|
package/dist/packageVersion.js
CHANGED
|
@@ -8,5 +8,5 @@
|
|
|
8
8
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
9
|
exports.pkgVersion = exports.pkgName = void 0;
|
|
10
10
|
exports.pkgName = "@fluidframework/matrix";
|
|
11
|
-
exports.pkgVersion = "2.0.0-internal.2.1
|
|
11
|
+
exports.pkgVersion = "2.0.0-internal.2.2.1";
|
|
12
12
|
//# sourceMappingURL=packageVersion.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"packageVersion.js","sourceRoot":"","sources":["../src/packageVersion.ts"],"names":[],"mappings":";AAAA;;;;;GAKG;;;AAEU,QAAA,OAAO,GAAG,wBAAwB,CAAC;AACnC,QAAA,UAAU,GAAG,sBAAsB,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n *\n * THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY\n */\n\nexport const pkgName = \"@fluidframework/matrix\";\nexport const pkgVersion = \"2.0.0-internal.2.1
|
|
1
|
+
{"version":3,"file":"packageVersion.js","sourceRoot":"","sources":["../src/packageVersion.ts"],"names":[],"mappings":";AAAA;;;;;GAKG;;;AAEU,QAAA,OAAO,GAAG,wBAAwB,CAAC;AACnC,QAAA,UAAU,GAAG,sBAAsB,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n *\n * THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY\n */\n\nexport const pkgName = \"@fluidframework/matrix\";\nexport const pkgVersion = \"2.0.0-internal.2.2.1\";\n"]}
|
package/lib/packageVersion.d.ts
CHANGED
|
@@ -5,5 +5,5 @@
|
|
|
5
5
|
* THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY
|
|
6
6
|
*/
|
|
7
7
|
export declare const pkgName = "@fluidframework/matrix";
|
|
8
|
-
export declare const pkgVersion = "2.0.0-internal.2.1
|
|
8
|
+
export declare const pkgVersion = "2.0.0-internal.2.2.1";
|
|
9
9
|
//# sourceMappingURL=packageVersion.d.ts.map
|
package/lib/packageVersion.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"packageVersion.js","sourceRoot":"","sources":["../src/packageVersion.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,MAAM,CAAC,MAAM,OAAO,GAAG,wBAAwB,CAAC;AAChD,MAAM,CAAC,MAAM,UAAU,GAAG,sBAAsB,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n *\n * THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY\n */\n\nexport const pkgName = \"@fluidframework/matrix\";\nexport const pkgVersion = \"2.0.0-internal.2.1
|
|
1
|
+
{"version":3,"file":"packageVersion.js","sourceRoot":"","sources":["../src/packageVersion.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,MAAM,CAAC,MAAM,OAAO,GAAG,wBAAwB,CAAC;AAChD,MAAM,CAAC,MAAM,UAAU,GAAG,sBAAsB,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n *\n * THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY\n */\n\nexport const pkgName = \"@fluidframework/matrix\";\nexport const pkgVersion = \"2.0.0-internal.2.2.1\";\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/matrix",
|
|
3
|
-
"version": "2.0.0-internal.2.1
|
|
3
|
+
"version": "2.0.0-internal.2.2.1",
|
|
4
4
|
"description": "Distributed matrix",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -30,8 +30,12 @@
|
|
|
30
30
|
"clean": "rimraf dist lib bench/dist *.tsbuildinfo *.build.log",
|
|
31
31
|
"eslint": "eslint --format stylish src",
|
|
32
32
|
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
|
33
|
+
"format": "npm run prettier:fix",
|
|
33
34
|
"lint": "npm run eslint",
|
|
34
35
|
"lint:fix": "npm run eslint:fix",
|
|
36
|
+
"postpack": "tar -cf ./matrix.test-files.tar ./src/test ./dist/test",
|
|
37
|
+
"prettier": "prettier --check . --ignore-path ../../../.prettierignore",
|
|
38
|
+
"prettier:fix": "prettier --write . --ignore-path ../../../.prettierignore",
|
|
35
39
|
"stress": "mocha --recursive dist/test/**/*.spec.js --exit -r node_modules/@fluidframework/mocha-test-setup --unhandled-rejections=strict --fgrep stress-loop",
|
|
36
40
|
"test": "npm run test:mocha",
|
|
37
41
|
"test:coverage": "nyc npm test -- --reporter xunit --reporter-option output=nyc/junit-report.xml --exit",
|
|
@@ -62,28 +66,28 @@
|
|
|
62
66
|
"dependencies": {
|
|
63
67
|
"@fluidframework/common-definitions": "^0.20.1",
|
|
64
68
|
"@fluidframework/common-utils": "^1.0.0",
|
|
65
|
-
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.1
|
|
66
|
-
"@fluidframework/datastore-definitions": ">=2.0.0-internal.2.1
|
|
67
|
-
"@fluidframework/merge-tree": ">=2.0.0-internal.2.1
|
|
69
|
+
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.2.1 <2.0.0-internal.3.0.0",
|
|
70
|
+
"@fluidframework/datastore-definitions": ">=2.0.0-internal.2.2.1 <2.0.0-internal.3.0.0",
|
|
71
|
+
"@fluidframework/merge-tree": ">=2.0.0-internal.2.2.1 <2.0.0-internal.3.0.0",
|
|
68
72
|
"@fluidframework/protocol-base": "^0.1038.2000",
|
|
69
73
|
"@fluidframework/protocol-definitions": "^1.1.0",
|
|
70
|
-
"@fluidframework/runtime-definitions": ">=2.0.0-internal.2.1
|
|
71
|
-
"@fluidframework/runtime-utils": ">=2.0.0-internal.2.1
|
|
72
|
-
"@fluidframework/shared-object-base": ">=2.0.0-internal.2.1
|
|
73
|
-
"@fluidframework/telemetry-utils": ">=2.0.0-internal.2.1
|
|
74
|
+
"@fluidframework/runtime-definitions": ">=2.0.0-internal.2.2.1 <2.0.0-internal.3.0.0",
|
|
75
|
+
"@fluidframework/runtime-utils": ">=2.0.0-internal.2.2.1 <2.0.0-internal.3.0.0",
|
|
76
|
+
"@fluidframework/shared-object-base": ">=2.0.0-internal.2.2.1 <2.0.0-internal.3.0.0",
|
|
77
|
+
"@fluidframework/telemetry-utils": ">=2.0.0-internal.2.2.1 <2.0.0-internal.3.0.0",
|
|
74
78
|
"@tiny-calc/nano": "0.0.0-alpha.5",
|
|
75
79
|
"tslib": "^1.10.0"
|
|
76
80
|
},
|
|
77
81
|
"devDependencies": {
|
|
78
|
-
"@fluid-internal/test-dds-utils": ">=2.0.0-internal.2.1
|
|
79
|
-
"@fluid-tools/benchmark": "^0.
|
|
80
|
-
"@fluid-tools/build-cli": "^0.
|
|
82
|
+
"@fluid-internal/test-dds-utils": ">=2.0.0-internal.2.2.1 <2.0.0-internal.3.0.0",
|
|
83
|
+
"@fluid-tools/benchmark": "^0.45.0",
|
|
84
|
+
"@fluid-tools/build-cli": "^0.7.0",
|
|
81
85
|
"@fluidframework/build-common": "^1.1.0",
|
|
82
|
-
"@fluidframework/build-tools": "^0.
|
|
86
|
+
"@fluidframework/build-tools": "^0.7.0",
|
|
83
87
|
"@fluidframework/eslint-config-fluid": "^1.2.0",
|
|
84
|
-
"@fluidframework/matrix-previous": "npm:@fluidframework/matrix@2.0.0-internal.2.
|
|
85
|
-
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.2.1
|
|
86
|
-
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.2.1
|
|
88
|
+
"@fluidframework/matrix-previous": "npm:@fluidframework/matrix@2.0.0-internal.2.2.0",
|
|
89
|
+
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.2.2.1 <2.0.0-internal.3.0.0",
|
|
90
|
+
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.2.2.1 <2.0.0-internal.3.0.0",
|
|
87
91
|
"@microsoft/api-extractor": "^7.22.2",
|
|
88
92
|
"@rushstack/eslint-config": "^2.5.1",
|
|
89
93
|
"@tiny-calc/micro": "0.0.0-alpha.5",
|
|
@@ -96,6 +100,7 @@
|
|
|
96
100
|
"hotloop": "^1.2.0",
|
|
97
101
|
"mocha": "^10.0.0",
|
|
98
102
|
"nyc": "^15.0.0",
|
|
103
|
+
"prettier": "~2.6.2",
|
|
99
104
|
"rimraf": "^2.6.2",
|
|
100
105
|
"source-map-support": "^0.5.16",
|
|
101
106
|
"ts-node": "^7.0.1",
|
|
@@ -103,8 +108,8 @@
|
|
|
103
108
|
"uuid": "^8.3.1"
|
|
104
109
|
},
|
|
105
110
|
"typeValidation": {
|
|
106
|
-
"version": "2.0.0-internal.2.
|
|
107
|
-
"baselineRange": "2.0.0-internal.2.
|
|
111
|
+
"version": "2.0.0-internal.2.2.0",
|
|
112
|
+
"baselineRange": "2.0.0-internal.2.2.0",
|
|
108
113
|
"broken": {}
|
|
109
114
|
}
|
|
110
115
|
}
|
package/src/packageVersion.ts
CHANGED