@fluidframework/core-interfaces 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 +2 -1
- package/package.json +11 -6
- package/prettier.config.cjs +8 -0
package/.eslintrc.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/core-interfaces",
|
|
3
|
-
"version": "2.0.0-internal.2.
|
|
3
|
+
"version": "2.0.0-internal.2.2.0",
|
|
4
4
|
"description": "Fluid object interfaces",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -28,18 +28,21 @@
|
|
|
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",
|
|
34
|
+
"prettier": "prettier --check . --ignore-path ../../../.prettierignore",
|
|
35
|
+
"prettier:fix": "prettier --write . --ignore-path ../../../.prettierignore",
|
|
33
36
|
"tsc": "tsc",
|
|
34
37
|
"tsc:watch": "tsc --watch",
|
|
35
38
|
"typetests:gen": "flub generate typetests --generate --dir .",
|
|
36
39
|
"typetests:prepare": "flub generate typetests --prepare --dir . --pin"
|
|
37
40
|
},
|
|
38
41
|
"devDependencies": {
|
|
39
|
-
"@fluid-tools/build-cli": "^0.
|
|
42
|
+
"@fluid-tools/build-cli": "^0.7.0",
|
|
40
43
|
"@fluidframework/build-common": "^1.1.0",
|
|
41
|
-
"@fluidframework/build-tools": "^0.
|
|
42
|
-
"@fluidframework/core-interfaces-previous": "npm:@fluidframework/core-interfaces@2.0.0-internal.2.1.
|
|
44
|
+
"@fluidframework/build-tools": "^0.7.0",
|
|
45
|
+
"@fluidframework/core-interfaces-previous": "npm:@fluidframework/core-interfaces@2.0.0-internal.2.1.0",
|
|
43
46
|
"@fluidframework/eslint-config-fluid": "^1.2.0",
|
|
44
47
|
"@microsoft/api-extractor": "^7.22.2",
|
|
45
48
|
"@rushstack/eslint-config": "^2.5.1",
|
|
@@ -47,12 +50,14 @@
|
|
|
47
50
|
"concurrently": "^6.2.0",
|
|
48
51
|
"copyfiles": "^2.4.1",
|
|
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
|
},
|
|
53
57
|
"typeValidation": {
|
|
54
|
-
"version": "2.0.0-internal.2.
|
|
55
|
-
"baselineRange": "2.0.0-internal.2.1.
|
|
58
|
+
"version": "2.0.0-internal.2.2.0",
|
|
59
|
+
"baselineRange": ">=2.0.0-internal.2.1.0 <2.0.0-internal.2.2.0",
|
|
60
|
+
"baselineVersion": "2.0.0-internal.2.1.0",
|
|
56
61
|
"broken": {}
|
|
57
62
|
}
|
|
58
63
|
}
|