@fluidframework/azure-local-service 2.0.0-internal.7.2.2 → 2.0.0-internal.7.4.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/CHANGELOG.md +8 -0
- package/README.md +1 -2
- package/api-extractor-lint.json +13 -0
- package/api-extractor.json +1 -1
- package/dist/azure-local-service-alpha.d.ts +1 -0
- package/dist/azure-local-service-beta.d.ts +1 -0
- package/dist/azure-local-service-public.d.ts +1 -0
- package/dist/azure-local-service-untrimmed.d.ts +1 -0
- package/dist/tsdoc-metadata.json +1 -1
- package/package.json +12 -9
- package/tsconfig.json +6 -4
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -104,8 +104,7 @@ Thank you!
|
|
|
104
104
|
|
|
105
105
|
This project may contain Microsoft trademarks or logos for Microsoft projects, products, or services.
|
|
106
106
|
|
|
107
|
-
Use of these trademarks or logos must follow Microsoft's [Trademark & Brand
|
|
108
|
-
Guidelines](https://www.microsoft.com/en-us/legal/intellectualproperty/trademarks/usage/general).
|
|
107
|
+
Use of these trademarks or logos must follow Microsoft's [Trademark & Brand Guidelines](https://www.microsoft.com/en-us/legal/intellectualproperty/trademarks/usage/general).
|
|
109
108
|
|
|
110
109
|
Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship.
|
|
111
110
|
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json",
|
|
3
|
+
"extends": "../../../common/build/build-common/api-extractor-lint.json",
|
|
4
|
+
"messages": {
|
|
5
|
+
"extractorMessageReporting": {
|
|
6
|
+
// TODO: remove once base config has this enabled as an error
|
|
7
|
+
"ae-incompatible-release-tags": {
|
|
8
|
+
"logLevel": "error",
|
|
9
|
+
"addToApiReportFile": false
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
}
|
package/api-extractor.json
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { }
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { }
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { }
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { }
|
package/dist/tsdoc-metadata.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/azure-local-service",
|
|
3
|
-
"version": "2.0.0-internal.7.
|
|
3
|
+
"version": "2.0.0-internal.7.4.0",
|
|
4
4
|
"description": "Local implementation of the Azure Fluid Relay service for testing/development use",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -22,13 +22,14 @@
|
|
|
22
22
|
"types": "dist/index.d.ts",
|
|
23
23
|
"bin": "dist/index.js",
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"tinylicious": "^2.0.
|
|
25
|
+
"tinylicious": "^2.0.2"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
|
+
"@arethetypeswrong/cli": "^0.13.3",
|
|
28
29
|
"@fluidframework/build-common": "^2.0.3",
|
|
29
|
-
"@fluidframework/build-tools": "^0.
|
|
30
|
-
"@fluidframework/eslint-config-fluid": "^3.
|
|
31
|
-
"@microsoft/api-extractor": "^7.
|
|
30
|
+
"@fluidframework/build-tools": "^0.28.0",
|
|
31
|
+
"@fluidframework/eslint-config-fluid": "^3.1.0",
|
|
32
|
+
"@microsoft/api-extractor": "^7.38.3",
|
|
32
33
|
"eslint": "~8.50.0",
|
|
33
34
|
"eslint-config-prettier": "~9.0.0",
|
|
34
35
|
"forever": "^4.0.3",
|
|
@@ -45,15 +46,17 @@
|
|
|
45
46
|
"build": "fluid-build . --task build",
|
|
46
47
|
"build:compile": "fluid-build . --task compile",
|
|
47
48
|
"build:docs": "api-extractor run --local",
|
|
49
|
+
"check:are-the-types-wrong": "attw --pack",
|
|
50
|
+
"check:release-tags": "api-extractor run --local --config ./api-extractor-lint.json",
|
|
48
51
|
"ci:build:docs": "api-extractor run",
|
|
49
|
-
"clean": "rimraf --glob dist lib \"
|
|
52
|
+
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" _api-extractor-temp",
|
|
50
53
|
"eslint": "eslint --format stylish src",
|
|
51
54
|
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
|
52
55
|
"format": "npm run prettier:fix",
|
|
53
|
-
"lint": "npm run prettier && npm run eslint",
|
|
56
|
+
"lint": "npm run prettier && npm run check:release-tags && npm run eslint",
|
|
54
57
|
"lint:fix": "npm run prettier:fix && npm run eslint:fix",
|
|
55
|
-
"prettier": "prettier --check . --ignore-path ../../../.prettierignore",
|
|
56
|
-
"prettier:fix": "prettier --write . --ignore-path ../../../.prettierignore",
|
|
58
|
+
"prettier": "prettier --check . --cache --ignore-path ../../../.prettierignore",
|
|
59
|
+
"prettier:fix": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
|
57
60
|
"start": "forever start dist/index.js",
|
|
58
61
|
"start:debug": "node --inspect=0.0.0.0:9229 dist/index.js",
|
|
59
62
|
"stop": "forever stop dist/index.js",
|
package/tsconfig.json
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
{
|
|
2
|
-
"extends":
|
|
3
|
-
|
|
2
|
+
"extends": [
|
|
3
|
+
"../../../common/build/build-common/tsconfig.base.json",
|
|
4
|
+
"../../../common/build/build-common/tsconfig.cjs.json",
|
|
5
|
+
],
|
|
6
|
+
"include": ["src/**/*"],
|
|
7
|
+
"exclude": ["src/test/**/*"],
|
|
4
8
|
"compilerOptions": {
|
|
5
9
|
"rootDir": "./src",
|
|
6
10
|
"outDir": "./dist",
|
|
7
|
-
"composite": true,
|
|
8
11
|
},
|
|
9
|
-
"include": ["src/**/*"],
|
|
10
12
|
}
|