@fluid-experimental/data-objects 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 +1 -1
- package/package.json +10 -6
- package/prettier.config.cjs +8 -0
package/.eslintrc.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluid-experimental/data-objects",
|
|
3
|
-
"version": "2.0.0-internal.2.
|
|
3
|
+
"version": "2.0.0-internal.2.2.0",
|
|
4
4
|
"description": "A collection of ready to use Fluid Data Objects",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -24,20 +24,23 @@
|
|
|
24
24
|
"clean": "rimraf dist *.tsbuildinfo *.build.log",
|
|
25
25
|
"eslint": "eslint --format stylish src",
|
|
26
26
|
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
|
27
|
+
"format": "npm run prettier:fix",
|
|
27
28
|
"lint": "npm run eslint",
|
|
28
29
|
"lint:fix": "npm run eslint:fix",
|
|
30
|
+
"prettier": "prettier --check . --ignore-path ../../../.prettierignore",
|
|
31
|
+
"prettier:fix": "prettier --write . --ignore-path ../../../.prettierignore",
|
|
29
32
|
"tsc": "tsc"
|
|
30
33
|
},
|
|
31
34
|
"dependencies": {
|
|
32
|
-
"@fluidframework/aqueduct": ">=2.0.0-internal.2.
|
|
35
|
+
"@fluidframework/aqueduct": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
|
33
36
|
"@fluidframework/common-definitions": "^0.20.1",
|
|
34
37
|
"@fluidframework/common-utils": "^1.0.0",
|
|
35
|
-
"@fluidframework/datastore-definitions": ">=2.0.0-internal.2.
|
|
36
|
-
"@fluidframework/map": ">=2.0.0-internal.2.
|
|
37
|
-
"@fluidframework/runtime-definitions": ">=2.0.0-internal.2.
|
|
38
|
+
"@fluidframework/datastore-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
|
39
|
+
"@fluidframework/map": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0",
|
|
40
|
+
"@fluidframework/runtime-definitions": ">=2.0.0-internal.2.2.0 <2.0.0-internal.3.0.0"
|
|
38
41
|
},
|
|
39
42
|
"devDependencies": {
|
|
40
|
-
"@fluid-tools/build-cli": "^0.
|
|
43
|
+
"@fluid-tools/build-cli": "^0.7.0",
|
|
41
44
|
"@fluidframework/build-common": "^1.1.0",
|
|
42
45
|
"@fluidframework/eslint-config-fluid": "^1.2.0",
|
|
43
46
|
"@microsoft/api-extractor": "^7.22.2",
|
|
@@ -47,6 +50,7 @@
|
|
|
47
50
|
"copyfiles": "^2.4.1",
|
|
48
51
|
"cross-env": "^7.0.2",
|
|
49
52
|
"eslint": "~8.6.0",
|
|
53
|
+
"prettier": "~2.6.2",
|
|
50
54
|
"rimraf": "^2.6.2",
|
|
51
55
|
"typescript": "~4.5.5"
|
|
52
56
|
},
|