@fluidframework/matrix 2.0.0-internal.2.1.1 → 2.0.0-internal.2.2.0
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 +26 -18
- 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.
|
|
8
|
+
export declare const pkgVersion = "2.0.0-internal.2.2.0";
|
|
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.
|
|
11
|
+
exports.pkgVersion = "2.0.0-internal.2.2.0";
|
|
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
|
+
{"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.0\";\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.
|
|
8
|
+
export declare const pkgVersion = "2.0.0-internal.2.2.0";
|
|
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
|
+
{"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.0\";\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/matrix",
|
|
3
|
-
"version": "2.0.0-internal.2.
|
|
3
|
+
"version": "2.0.0-internal.2.2.0",
|
|
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",
|
|
@@ -40,7 +44,8 @@
|
|
|
40
44
|
"test:mocha": "npm run stress -- --invert",
|
|
41
45
|
"test:mocha:verbose": "cross-env FLUID_TEST_VERBOSE=1 npm run test:mocha",
|
|
42
46
|
"tsc": "tsc",
|
|
43
|
-
"typetests:gen": "
|
|
47
|
+
"typetests:gen": "flub generate typetests --generate --dir .",
|
|
48
|
+
"typetests:prepare": "flub generate typetests --prepare --dir . --pin"
|
|
44
49
|
},
|
|
45
50
|
"nyc": {
|
|
46
51
|
"all": true,
|
|
@@ -61,28 +66,28 @@
|
|
|
61
66
|
"dependencies": {
|
|
62
67
|
"@fluidframework/common-definitions": "^0.20.1",
|
|
63
68
|
"@fluidframework/common-utils": "^1.0.0",
|
|
64
|
-
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.
|
|
65
|
-
"@fluidframework/datastore-definitions": ">=2.0.0-internal.2.
|
|
66
|
-
"@fluidframework/merge-tree": ">=2.0.0-internal.2.
|
|
69
|
+
"@fluidframework/core-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
|
70
|
+
"@fluidframework/datastore-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
|
71
|
+
"@fluidframework/merge-tree": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
|
67
72
|
"@fluidframework/protocol-base": "^0.1038.2000",
|
|
68
73
|
"@fluidframework/protocol-definitions": "^1.1.0",
|
|
69
|
-
"@fluidframework/runtime-definitions": ">=2.0.0-internal.2.
|
|
70
|
-
"@fluidframework/runtime-utils": ">=2.0.0-internal.2.
|
|
71
|
-
"@fluidframework/shared-object-base": ">=2.0.0-internal.2.
|
|
72
|
-
"@fluidframework/telemetry-utils": ">=2.0.0-internal.2.
|
|
74
|
+
"@fluidframework/runtime-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
|
75
|
+
"@fluidframework/runtime-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
|
76
|
+
"@fluidframework/shared-object-base": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
|
77
|
+
"@fluidframework/telemetry-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
|
73
78
|
"@tiny-calc/nano": "0.0.0-alpha.5",
|
|
74
79
|
"tslib": "^1.10.0"
|
|
75
80
|
},
|
|
76
81
|
"devDependencies": {
|
|
77
|
-
"@fluid-internal/test-dds-utils": ">=2.0.0-internal.2.
|
|
78
|
-
"@fluid-tools/benchmark": "^0.
|
|
79
|
-
"@fluid-tools/build-cli": "^0.
|
|
82
|
+
"@fluid-internal/test-dds-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
|
83
|
+
"@fluid-tools/benchmark": "^0.45.0",
|
|
84
|
+
"@fluid-tools/build-cli": "^0.7.0",
|
|
80
85
|
"@fluidframework/build-common": "^1.1.0",
|
|
81
|
-
"@fluidframework/build-tools": "^0.
|
|
82
|
-
"@fluidframework/eslint-config-fluid": "^1.
|
|
83
|
-
"@fluidframework/matrix-previous": "npm:@fluidframework/matrix@2.0.0-internal.2.
|
|
84
|
-
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.2.
|
|
85
|
-
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.2.
|
|
86
|
+
"@fluidframework/build-tools": "^0.7.0",
|
|
87
|
+
"@fluidframework/eslint-config-fluid": "^1.2.0",
|
|
88
|
+
"@fluidframework/matrix-previous": "npm:@fluidframework/matrix@2.0.0-internal.2.1.0",
|
|
89
|
+
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
|
90
|
+
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
|
86
91
|
"@microsoft/api-extractor": "^7.22.2",
|
|
87
92
|
"@rushstack/eslint-config": "^2.5.1",
|
|
88
93
|
"@tiny-calc/micro": "0.0.0-alpha.5",
|
|
@@ -95,6 +100,7 @@
|
|
|
95
100
|
"hotloop": "^1.2.0",
|
|
96
101
|
"mocha": "^10.0.0",
|
|
97
102
|
"nyc": "^15.0.0",
|
|
103
|
+
"prettier": "~2.6.2",
|
|
98
104
|
"rimraf": "^2.6.2",
|
|
99
105
|
"source-map-support": "^0.5.16",
|
|
100
106
|
"ts-node": "^7.0.1",
|
|
@@ -102,7 +108,9 @@
|
|
|
102
108
|
"uuid": "^8.3.1"
|
|
103
109
|
},
|
|
104
110
|
"typeValidation": {
|
|
105
|
-
"version": "2.0.0-internal.2.
|
|
111
|
+
"version": "2.0.0-internal.2.2.0",
|
|
112
|
+
"baselineRange": ">=2.0.0-internal.2.1.0 <2.0.0-internal.2.2.0",
|
|
113
|
+
"baselineVersion": "2.0.0-internal.2.1.0",
|
|
106
114
|
"broken": {}
|
|
107
115
|
}
|
|
108
116
|
}
|
package/src/packageVersion.ts
CHANGED