@fluidframework/azure-local-service 2.50.0 → 2.51.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.cjs +1 -22
- package/CHANGELOG.md +4 -0
- package/README.md +0 -1
- package/{src/index.ts → index.js} +0 -1
- package/package.json +8 -13
- package/tsconfig.eslint.json +9 -0
- package/lib/index.d.ts +0 -7
- package/lib/index.d.ts.map +0 -1
- package/lib/index.js +0 -8
- package/lib/index.js.map +0 -1
- package/tsconfig.json +0 -9
package/.eslintrc.cjs
CHANGED
|
@@ -6,27 +6,6 @@
|
|
|
6
6
|
module.exports = {
|
|
7
7
|
extends: [require.resolve("@fluidframework/eslint-config-fluid/strict"), "prettier"],
|
|
8
8
|
parserOptions: {
|
|
9
|
-
project: ["./tsconfig.json"],
|
|
9
|
+
project: ["./tsconfig.eslint.json"],
|
|
10
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
|
-
],
|
|
32
11
|
};
|
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/azure-local-service",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.51.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": {
|
|
@@ -11,9 +11,9 @@
|
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"author": "Microsoft and contributors",
|
|
13
13
|
"type": "module",
|
|
14
|
-
"bin": "
|
|
14
|
+
"bin": "index.js",
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"tinylicious": "^
|
|
16
|
+
"tinylicious": "^7.0.0"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
19
|
"@biomejs/biome": "~1.9.3",
|
|
@@ -23,9 +23,7 @@
|
|
|
23
23
|
"eslint": "~8.55.0",
|
|
24
24
|
"eslint-config-prettier": "~9.0.0",
|
|
25
25
|
"pm2": "^5.4.2",
|
|
26
|
-
"rimraf": "^4.4.0"
|
|
27
|
-
"ts-node": "^10.9.1",
|
|
28
|
-
"typescript": "~5.4.5"
|
|
26
|
+
"rimraf": "^4.4.0"
|
|
29
27
|
},
|
|
30
28
|
"typeValidation": {
|
|
31
29
|
"disabled": true,
|
|
@@ -33,20 +31,17 @@
|
|
|
33
31
|
"entrypoint": "internal"
|
|
34
32
|
},
|
|
35
33
|
"scripts": {
|
|
36
|
-
"build": "fluid-build . --task build",
|
|
37
|
-
"build:compile": "fluid-build . --task compile",
|
|
38
|
-
"build:esnext": "tsc --project ./tsconfig.json",
|
|
39
34
|
"check:biome": "biome check .",
|
|
40
35
|
"check:format": "npm run check:biome",
|
|
41
36
|
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" _api-extractor-temp",
|
|
42
|
-
"eslint": "eslint --format stylish
|
|
43
|
-
"eslint:fix": "eslint --format stylish
|
|
37
|
+
"eslint": "eslint --format stylish index.js",
|
|
38
|
+
"eslint:fix": "eslint --format stylish index.js --fix --fix-type problem,suggestion,layout",
|
|
44
39
|
"format": "npm run format:biome",
|
|
45
40
|
"format:biome": "biome check . --write",
|
|
46
41
|
"lint": "fluid-build . --task lint",
|
|
47
42
|
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
|
48
|
-
"start": "pm2 start -n azure-local-service
|
|
49
|
-
"start:debug": "node --inspect=0.0.0.0:9229
|
|
43
|
+
"start": "pm2 start -n azure-local-service index.js",
|
|
44
|
+
"start:debug": "node --inspect=0.0.0.0:9229 index.js",
|
|
50
45
|
"stop": "pm2 stop azure-local-service",
|
|
51
46
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
52
47
|
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
{
|
|
2
|
+
// This file is only used by ESLint to check the index.js file.
|
|
3
|
+
// Because the common config uses TypeScript, we need to provide a tsconfig file to them.
|
|
4
|
+
"extends": "../../../common/build/build-common/tsconfig.node16.json",
|
|
5
|
+
"include": ["index.js"],
|
|
6
|
+
"compilerOptions": {
|
|
7
|
+
"noEmit": true,
|
|
8
|
+
},
|
|
9
|
+
}
|
package/lib/index.d.ts
DELETED
package/lib/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAEA;;;GAGG;AAGH,OAAO,aAAa,CAAC"}
|
package/lib/index.js
DELETED
package/lib/index.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAEA;;;GAGG;AAEH,uDAAuD;AACvD,OAAO,aAAa,CAAC","sourcesContent":["#!/usr/bin/env node\n\n/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\n// eslint-disable-next-line import/no-unassigned-import\nimport \"tinylicious\";\n"]}
|