@fluidframework/azure-local-service 2.0.0-internal.7.0.0 → 2.0.0-internal.7.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 +21 -1
- package/CHANGELOG.md +8 -0
- package/api-extractor.json +1 -9
- package/dist/tsdoc-metadata.json +1 -1
- package/package.json +17 -10
package/.eslintrc.js
CHANGED
|
@@ -5,8 +5,28 @@
|
|
|
5
5
|
|
|
6
6
|
module.exports = {
|
|
7
7
|
extends: [require.resolve("@fluidframework/eslint-config-fluid/strict"), "prettier"],
|
|
8
|
-
plugins: ["eslint-plugin-jsdoc"],
|
|
9
8
|
parserOptions: {
|
|
10
9
|
project: ["./tsconfig.json"],
|
|
11
10
|
},
|
|
11
|
+
rules: {
|
|
12
|
+
// Useful for developer accessibility
|
|
13
|
+
"unicorn/prevent-abbreviations": [
|
|
14
|
+
"error",
|
|
15
|
+
{
|
|
16
|
+
allowList: {
|
|
17
|
+
// Industry-standard index variable name.
|
|
18
|
+
i: true,
|
|
19
|
+
},
|
|
20
|
+
},
|
|
21
|
+
],
|
|
22
|
+
},
|
|
23
|
+
overrides: [
|
|
24
|
+
{
|
|
25
|
+
// Overrides for type-tests
|
|
26
|
+
files: ["src/test/types/*"],
|
|
27
|
+
rules: {
|
|
28
|
+
"unicorn/prevent-abbreviations": "off",
|
|
29
|
+
},
|
|
30
|
+
},
|
|
31
|
+
],
|
|
12
32
|
};
|
package/CHANGELOG.md
CHANGED
package/api-extractor.json
CHANGED
|
@@ -1,12 +1,4 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json",
|
|
3
|
-
"extends": "@fluidframework/build-common/api-extractor-
|
|
4
|
-
"apiReport": {
|
|
5
|
-
"enabled": true,
|
|
6
|
-
"reportFolder": "<projectFolder>/api-report/"
|
|
7
|
-
},
|
|
8
|
-
"docModel": {
|
|
9
|
-
"enabled": true,
|
|
10
|
-
"apiJsonFilePath": "<projectFolder>/_api-extractor-temp/doc-models/<unscopedPackageName>.api.json"
|
|
11
|
-
}
|
|
3
|
+
"extends": "@fluidframework/build-common/api-extractor-base.json"
|
|
12
4
|
}
|
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.2.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": {
|
|
@@ -10,22 +10,29 @@
|
|
|
10
10
|
},
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"author": "Microsoft and contributors",
|
|
13
|
+
"exports": {
|
|
14
|
+
".": {
|
|
15
|
+
"default": {
|
|
16
|
+
"types": "./dist/index.d.ts",
|
|
17
|
+
"default": "./dist/index.js"
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
},
|
|
13
21
|
"main": "dist/index.js",
|
|
14
|
-
"
|
|
22
|
+
"types": "dist/index.d.ts",
|
|
15
23
|
"bin": "dist/index.js",
|
|
16
24
|
"dependencies": {
|
|
17
25
|
"tinylicious": "^2.0.1"
|
|
18
26
|
},
|
|
19
27
|
"devDependencies": {
|
|
20
|
-
"@fluidframework/build-common": "^2.0.
|
|
21
|
-
"@fluidframework/build-tools": "^0.
|
|
22
|
-
"@fluidframework/eslint-config-fluid": "^
|
|
28
|
+
"@fluidframework/build-common": "^2.0.3",
|
|
29
|
+
"@fluidframework/build-tools": "^0.26.1",
|
|
30
|
+
"@fluidframework/eslint-config-fluid": "^3.0.0",
|
|
23
31
|
"@microsoft/api-extractor": "^7.37.0",
|
|
24
|
-
"
|
|
25
|
-
"eslint": "~
|
|
26
|
-
"eslint-plugin-jsdoc": "~39.3.0",
|
|
32
|
+
"eslint": "~8.50.0",
|
|
33
|
+
"eslint-config-prettier": "~9.0.0",
|
|
27
34
|
"forever": "^4.0.3",
|
|
28
|
-
"prettier": "~
|
|
35
|
+
"prettier": "~3.0.3",
|
|
29
36
|
"rimraf": "^4.4.0",
|
|
30
37
|
"ts-node": "^10.9.1",
|
|
31
38
|
"typescript": "~5.1.6"
|
|
@@ -39,7 +46,7 @@
|
|
|
39
46
|
"build:compile": "fluid-build . --task compile",
|
|
40
47
|
"build:docs": "api-extractor run --local",
|
|
41
48
|
"ci:build:docs": "api-extractor run",
|
|
42
|
-
"clean": "rimraf --glob
|
|
49
|
+
"clean": "rimraf --glob dist lib \"*.tsbuildinfo\" \"*.build.log\" _api-extractor-temp",
|
|
43
50
|
"eslint": "eslint --format stylish src",
|
|
44
51
|
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
|
45
52
|
"format": "npm run prettier:fix",
|