@fluidframework/datastore-definitions 0.52.0 → 0.52.1
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 +3 -0
- package/package.json +7 -5
- package/tsconfig.json +4 -3
package/.eslintrc.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/datastore-definitions",
|
|
3
|
-
"version": "0.52.
|
|
3
|
+
"version": "0.52.1",
|
|
4
4
|
"description": "Fluid data store definitions",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": "https://github.com/microsoft/FluidFramework",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"types": "dist/index.d.ts",
|
|
12
12
|
"scripts": {
|
|
13
13
|
"build": "npm run build:gen && concurrently npm:build:compile npm:lint && npm run build:docs",
|
|
14
|
-
"build:compile": "npm run tsc",
|
|
14
|
+
"build:compile": "npm run tsc && npm run build:test",
|
|
15
15
|
"build:docs": "api-extractor run --local --typescript-compiler-folder ../../../node_modules/typescript && copyfiles -u 1 ./_api-extractor-temp/doc-models/* ../../../_api-extractor-temp/",
|
|
16
16
|
"build:full": "npm run build",
|
|
17
17
|
"build:full:compile": "npm run build:compile",
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
"build:gen:bump": "npm run build:gen:typetests:prepare",
|
|
20
20
|
"build:gen:typetests": "fluid-type-validator -d .",
|
|
21
21
|
"build:gen:typetests:prepare": "fluid-type-validator -d . -p",
|
|
22
|
+
"build:test": "tsc --project ./src/test/tsconfig.json",
|
|
22
23
|
"ci:build:docs": "api-extractor run --typescript-compiler-folder ../../../node_modules/typescript && copyfiles -u 1 ./_api-extractor-temp/* ../../../_api-extractor-temp/",
|
|
23
24
|
"clean": "rimraf dist *.tsbuildinfo *.build.log",
|
|
24
25
|
"eslint": "eslint --format stylish src",
|
|
@@ -36,13 +37,14 @@
|
|
|
36
37
|
"@fluidframework/container-definitions": "^0.42.0",
|
|
37
38
|
"@fluidframework/core-interfaces": "^0.41.0",
|
|
38
39
|
"@fluidframework/protocol-definitions": "^0.1026.0",
|
|
39
|
-
"@fluidframework/runtime-definitions": "^0.52.
|
|
40
|
+
"@fluidframework/runtime-definitions": "^0.52.1",
|
|
40
41
|
"@types/node": "^12.19.0"
|
|
41
42
|
},
|
|
42
43
|
"devDependencies": {
|
|
43
44
|
"@fluidframework/build-common": "^0.23.0",
|
|
44
|
-
"@fluidframework/build-tools": "^0.2.
|
|
45
|
+
"@fluidframework/build-tools": "^0.2.44827",
|
|
45
46
|
"@fluidframework/datastore-definitions-0.51.1": "npm:@fluidframework/datastore-definitions@0.51.1",
|
|
47
|
+
"@fluidframework/datastore-definitions-0.52.0": "npm:@fluidframework/datastore-definitions@0.52.0",
|
|
46
48
|
"@fluidframework/eslint-config-fluid": "^0.24.0",
|
|
47
49
|
"@microsoft/api-extractor": "^7.16.1",
|
|
48
50
|
"@typescript-eslint/eslint-plugin": "~4.14.0",
|
|
@@ -79,7 +81,7 @@
|
|
|
79
81
|
}
|
|
80
82
|
},
|
|
81
83
|
"typeValidation": {
|
|
82
|
-
"version": "0.52.
|
|
84
|
+
"version": "0.52.1",
|
|
83
85
|
"broken": {}
|
|
84
86
|
}
|
|
85
87
|
}
|
package/tsconfig.json
CHANGED