@fluid-experimental/property-changeset 2.0.0-internal.6.1.0 → 2.0.0-internal.6.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/dist/changeset_operations/array.d.ts.map +1 -1
- package/dist/changeset_operations/array.js +4 -1
- package/dist/changeset_operations/array.js.map +1 -1
- package/dist/changeset_operations/indexedCollection.d.ts.map +1 -1
- package/dist/changeset_operations/indexedCollection.js +15 -13
- package/dist/changeset_operations/indexedCollection.js.map +1 -1
- package/dist/test/array.spec.js.map +1 -1
- package/dist/test/indexedCollection.spec.js +77 -0
- package/dist/test/indexedCollection.spec.js.map +1 -0
- package/dist/test/tsconfig.tsbuildinfo +1 -1
- package/dist/utils.d.ts.map +1 -1
- package/dist/utils.js +2 -0
- package/dist/utils.js.map +1 -1
- package/lib/changeset_operations/array.js +4 -1
- package/lib/changeset_operations/array.js.map +1 -1
- package/lib/changeset_operations/indexedCollection.js +15 -13
- package/lib/changeset_operations/indexedCollection.js.map +1 -1
- package/lib/utils.js +2 -0
- package/lib/utils.js.map +1 -1
- package/package.json +5 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluid-experimental/property-changeset",
|
|
3
|
-
"version": "2.0.0-internal.6.
|
|
3
|
+
"version": "2.0.0-internal.6.2.0",
|
|
4
4
|
"description": "property changeset definitions and related functionalities",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"temp-directory": "nyc/.nyc_output"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@fluid-experimental/property-common": ">=2.0.0-internal.6.
|
|
42
|
+
"@fluid-experimental/property-common": ">=2.0.0-internal.6.2.0 <2.0.0-internal.6.3.0",
|
|
43
43
|
"ajv": "7.1.1",
|
|
44
44
|
"ajv-keywords": "4.0.0",
|
|
45
45
|
"async": "^3.2.2",
|
|
@@ -50,8 +50,8 @@
|
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"@fluidframework/build-common": "^2.0.0",
|
|
53
|
-
"@fluidframework/build-tools": "^0.
|
|
54
|
-
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.6.
|
|
53
|
+
"@fluidframework/build-tools": "^0.23.0",
|
|
54
|
+
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.6.2.0 <2.0.0-internal.6.3.0",
|
|
55
55
|
"@types/lodash": "^4.14.118",
|
|
56
56
|
"@types/mocha": "^9.1.1",
|
|
57
57
|
"@types/node": "^16.18.38",
|
|
@@ -93,7 +93,7 @@
|
|
|
93
93
|
"test": "npm run test:mocha",
|
|
94
94
|
"test:coverage": "nyc npm test -- --reporter xunit --reporter-option output=nyc/junit-report.xml",
|
|
95
95
|
"test:mocha": "mocha --recursive dist/test -r node_modules/@fluidframework/mocha-test-setup --unhandled-rejections=strict",
|
|
96
|
-
"test:mocha:multireport": "
|
|
96
|
+
"test:mocha:multireport": "npm run test:mocha",
|
|
97
97
|
"test:mocha:verbose": "cross-env FLUID_TEST_VERBOSE=1 npm run test:mocha",
|
|
98
98
|
"tsc": "tsc"
|
|
99
99
|
}
|