@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 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
@@ -1,5 +1,9 @@
1
1
  # @fluidframework/azure-local-service
2
2
 
3
+ ## 2.51.0
4
+
5
+ Dependency updates only.
6
+
3
7
  ## 2.50.0
4
8
 
5
9
  Dependency updates only.
package/README.md CHANGED
@@ -41,7 +41,6 @@ You can install, build, and start this service by running the following
41
41
 
42
42
  ```sh
43
43
  npm i
44
- npm run build
45
44
  npm run start
46
45
  ```
47
46
 
@@ -1,5 +1,4 @@
1
1
  #!/usr/bin/env node
2
-
3
2
  /*!
4
3
  * Copyright (c) Microsoft Corporation and contributors. All rights reserved.
5
4
  * Licensed under the MIT License.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluidframework/azure-local-service",
3
- "version": "2.50.0",
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": "lib/index.js",
14
+ "bin": "index.js",
15
15
  "dependencies": {
16
- "tinylicious": "^5.0.0"
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 src",
43
- "eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
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 lib/index.js",
49
- "start:debug": "node --inspect=0.0.0.0:9229 lib/index.js",
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
@@ -1,7 +0,0 @@
1
- #!/usr/bin/env node
2
- /*!
3
- * Copyright (c) Microsoft Corporation and contributors. All rights reserved.
4
- * Licensed under the MIT License.
5
- */
6
- import "tinylicious";
7
- //# sourceMappingURL=index.d.ts.map
@@ -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
@@ -1,8 +0,0 @@
1
- #!/usr/bin/env node
2
- /*!
3
- * Copyright (c) Microsoft Corporation and contributors. All rights reserved.
4
- * Licensed under the MIT License.
5
- */
6
- // eslint-disable-next-line import/no-unassigned-import
7
- import "tinylicious";
8
- //# sourceMappingURL=index.js.map
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"]}
package/tsconfig.json DELETED
@@ -1,9 +0,0 @@
1
- {
2
- "extends": "../../../common/build/build-common/tsconfig.node16.json",
3
- "include": ["src/**/*"],
4
- "exclude": ["src/test/**/*"],
5
- "compilerOptions": {
6
- "rootDir": "./src",
7
- "outDir": "./lib",
8
- },
9
- }