@fluidframework/sequence 2.0.0-internal.2.1.2 → 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 CHANGED
@@ -5,7 +5,8 @@
5
5
 
6
6
  module.exports = {
7
7
  "extends": [
8
- require.resolve("@fluidframework/eslint-config-fluid")
8
+ require.resolve("@fluidframework/eslint-config-fluid"),
9
+ "prettier"
9
10
  ],
10
11
  "parserOptions": {
11
12
  "project": ["./tsconfig.json", "./src/test/tsconfig.json"]
@@ -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/sequence";
8
- export declare const pkgVersion = "2.0.0-internal.2.1.2";
8
+ export declare const pkgVersion = "2.0.0-internal.2.2.0";
9
9
  //# sourceMappingURL=packageVersion.d.ts.map
@@ -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/sequence";
11
- exports.pkgVersion = "2.0.0-internal.2.1.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,0BAA0B,CAAC;AACrC,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/sequence\";\nexport const pkgVersion = \"2.0.0-internal.2.1.2\";\n"]}
1
+ {"version":3,"file":"packageVersion.js","sourceRoot":"","sources":["../src/packageVersion.ts"],"names":[],"mappings":";AAAA;;;;;GAKG;;;AAEU,QAAA,OAAO,GAAG,0BAA0B,CAAC;AACrC,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/sequence\";\nexport const pkgVersion = \"2.0.0-internal.2.2.0\";\n"]}
@@ -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/sequence";
8
- export declare const pkgVersion = "2.0.0-internal.2.1.2";
8
+ export declare const pkgVersion = "2.0.0-internal.2.2.0";
9
9
  //# sourceMappingURL=packageVersion.d.ts.map
@@ -5,5 +5,5 @@
5
5
  * THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY
6
6
  */
7
7
  export const pkgName = "@fluidframework/sequence";
8
- export const pkgVersion = "2.0.0-internal.2.1.2";
8
+ export const pkgVersion = "2.0.0-internal.2.2.0";
9
9
  //# sourceMappingURL=packageVersion.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"packageVersion.js","sourceRoot":"","sources":["../src/packageVersion.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,MAAM,CAAC,MAAM,OAAO,GAAG,0BAA0B,CAAC;AAClD,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/sequence\";\nexport const pkgVersion = \"2.0.0-internal.2.1.2\";\n"]}
1
+ {"version":3,"file":"packageVersion.js","sourceRoot":"","sources":["../src/packageVersion.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,MAAM,CAAC,MAAM,OAAO,GAAG,0BAA0B,CAAC;AAClD,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/sequence\";\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/sequence",
3
- "version": "2.0.0-internal.2.1.2",
3
+ "version": "2.0.0-internal.2.2.0",
4
4
  "description": "Distributed sequence",
5
5
  "homepage": "https://fluidframework.com",
6
6
  "repository": {
@@ -28,9 +28,12 @@
28
28
  "clean": "rimraf dist lib *.tsbuildinfo *.build.log",
29
29
  "eslint": "eslint --format stylish src",
30
30
  "eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
31
+ "format": "npm run prettier:fix",
31
32
  "lint": "npm run eslint",
32
33
  "lint:fix": "npm run eslint:fix",
33
- "postpack": "cd dist && tar -cvf ../sequence.test-files.tar ./test",
34
+ "postpack": "tar -cf ./sequence.test-files.tar ./src/test ./dist/test",
35
+ "prettier": "prettier --check . --ignore-path ../../../.prettierignore",
36
+ "prettier:fix": "prettier --write . --ignore-path ../../../.prettierignore",
34
37
  "test": "npm run test:mocha",
35
38
  "test:coverage": "nyc npm test -- --reporter xunit --reporter-option output=nyc/junit-report.xml",
36
39
  "test:memory": "mocha --config src/test/memory/.mocharc.js",
@@ -67,30 +70,30 @@
67
70
  "dependencies": {
68
71
  "@fluidframework/common-definitions": "^0.20.1",
69
72
  "@fluidframework/common-utils": "^1.0.0",
70
- "@fluidframework/container-utils": ">=2.0.0-internal.2.1.2 <2.0.0-internal.3.0.0",
71
- "@fluidframework/core-interfaces": ">=2.0.0-internal.2.1.2 <2.0.0-internal.3.0.0",
72
- "@fluidframework/datastore-definitions": ">=2.0.0-internal.2.1.2 <2.0.0-internal.3.0.0",
73
- "@fluidframework/merge-tree": ">=2.0.0-internal.2.1.2 <2.0.0-internal.3.0.0",
73
+ "@fluidframework/container-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
74
+ "@fluidframework/core-interfaces": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
75
+ "@fluidframework/datastore-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
76
+ "@fluidframework/merge-tree": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
74
77
  "@fluidframework/protocol-definitions": "^1.1.0",
75
- "@fluidframework/runtime-definitions": ">=2.0.0-internal.2.1.2 <2.0.0-internal.3.0.0",
76
- "@fluidframework/runtime-utils": ">=2.0.0-internal.2.1.2 <2.0.0-internal.3.0.0",
77
- "@fluidframework/shared-object-base": ">=2.0.0-internal.2.1.2 <2.0.0-internal.3.0.0",
78
- "@fluidframework/telemetry-utils": ">=2.0.0-internal.2.1.2 <2.0.0-internal.3.0.0",
78
+ "@fluidframework/runtime-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
79
+ "@fluidframework/runtime-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
80
+ "@fluidframework/shared-object-base": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
81
+ "@fluidframework/telemetry-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
79
82
  "uuid": "^8.3.1"
80
83
  },
81
84
  "devDependencies": {
82
- "@fluid-internal/stochastic-test-utils": ">=2.0.0-internal.2.1.2 <2.0.0-internal.3.0.0",
83
- "@fluid-internal/test-dds-utils": ">=2.0.0-internal.2.1.2 <2.0.0-internal.3.0.0",
84
- "@fluid-tools/benchmark": "^0.43.0",
85
- "@fluid-tools/build-cli": "^0.6.0",
85
+ "@fluid-internal/stochastic-test-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
86
+ "@fluid-internal/test-dds-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
87
+ "@fluid-tools/benchmark": "^0.45.0",
88
+ "@fluid-tools/build-cli": "^0.7.0",
86
89
  "@fluidframework/build-common": "^1.1.0",
87
- "@fluidframework/build-tools": "^0.6.0",
90
+ "@fluidframework/build-tools": "^0.7.0",
88
91
  "@fluidframework/eslint-config-fluid": "^1.2.0",
89
92
  "@fluidframework/gitresources": "^0.1038.2000",
90
- "@fluidframework/mocha-test-setup": ">=2.0.0-internal.2.1.2 <2.0.0-internal.3.0.0",
91
- "@fluidframework/sequence-previous": "npm:@fluidframework/sequence@2.0.0-internal.2.1.1",
93
+ "@fluidframework/mocha-test-setup": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
94
+ "@fluidframework/sequence-previous": "npm:@fluidframework/sequence@2.0.0-internal.2.1.0",
92
95
  "@fluidframework/server-services-client": "^0.1038.2000",
93
- "@fluidframework/test-runtime-utils": ">=2.0.0-internal.2.1.2 <2.0.0-internal.3.0.0",
96
+ "@fluidframework/test-runtime-utils": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
94
97
  "@microsoft/api-extractor": "^7.22.2",
95
98
  "@rushstack/eslint-config": "^2.5.1",
96
99
  "@types/diff": "^3.5.1",
@@ -104,13 +107,15 @@
104
107
  "eslint": "~8.6.0",
105
108
  "mocha": "^10.0.0",
106
109
  "nyc": "^15.0.0",
110
+ "prettier": "~2.6.2",
107
111
  "random-js": "^1.0.8",
108
112
  "rimraf": "^2.6.2",
109
113
  "typescript": "~4.5.5"
110
114
  },
111
115
  "typeValidation": {
112
- "version": "2.0.0-internal.2.1.2",
113
- "baselineRange": "2.0.0-internal.2.1.1",
116
+ "version": "2.0.0-internal.2.2.0",
117
+ "baselineRange": ">=2.0.0-internal.2.1.0 <2.0.0-internal.2.2.0",
118
+ "baselineVersion": "2.0.0-internal.2.1.0",
114
119
  "broken": {}
115
120
  }
116
121
  }
@@ -0,0 +1,8 @@
1
+ /*!
2
+ * Copyright (c) Microsoft Corporation and contributors. All rights reserved.
3
+ * Licensed under the MIT License.
4
+ */
5
+
6
+ module.exports = {
7
+ ...require("@fluidframework/build-common/prettier.config.cjs"),
8
+ };
@@ -6,4 +6,4 @@
6
6
  */
7
7
 
8
8
  export const pkgName = "@fluidframework/sequence";
9
- export const pkgVersion = "2.0.0-internal.2.1.2";
9
+ export const pkgVersion = "2.0.0-internal.2.2.0";