@fluidframework/azure-local-service 0.1.38773 → 1.1.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 CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  module.exports = {
7
7
  "extends": [
8
- "@fluidframework/eslint-config-fluid/eslint7"
8
+ require.resolve("@fluidframework/eslint-config-fluid")
9
9
  ],
10
10
  "parserOptions": {
11
11
  "project": ["./tsconfig.json"]
@@ -1,6 +1,6 @@
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-common-report.json",
3
+ "extends": "@fluidframework/build-common/api-extractor-common-strict.json",
4
4
  "apiReport": {
5
5
  "enabled": true,
6
6
  "reportFolder": "<projectFolder>/api-report/"
package/package.json CHANGED
@@ -1,9 +1,13 @@
1
1
  {
2
2
  "name": "@fluidframework/azure-local-service",
3
- "version": "0.1.38773",
3
+ "version": "1.1.0",
4
4
  "description": "Local implementation of the Azure Fluid Relay service for testing/development use",
5
5
  "homepage": "https://fluidframework.com",
6
- "repository": "https://github.com/microsoft/FluidFramework",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/microsoft/FluidFramework.git",
9
+ "directory": "azure/packages/azure-local-service"
10
+ },
7
11
  "license": "MIT",
8
12
  "author": "Microsoft and contributors",
9
13
  "main": "dist/index.js",
@@ -12,13 +16,13 @@
12
16
  "scripts": {
13
17
  "build": "concurrently npm:build:compile npm:lint && npm run build:docs",
14
18
  "build:compile": "npm run tsc",
15
- "build:docs": "api-extractor run --local --typescript-compiler-folder ./node_modules/typescript && copyfiles -u 1 ./_api-extractor-temp/doc-models/* ../../_api-extractor-temp/",
19
+ "build:docs": "api-extractor run --local",
16
20
  "build:full": "npm run build",
17
21
  "build:full:compile": "npm run build:compile",
18
- "ci:build:docs": "api-extractor run --typescript-compiler-folder ./node_modules/typescript && copyfiles -u 1 ./_api-extractor-temp/doc-models/* ../../_api-extractor-temp/",
22
+ "ci:build:docs": "api-extractor run",
19
23
  "clean": "rimraf dist lib *.tsbuildinfo *.build.log",
20
24
  "eslint": "eslint --format stylish src",
21
- "eslint:fix": "eslint --format stylish src --fix",
25
+ "eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
22
26
  "lint": "npm run eslint",
23
27
  "lint:fix": "npm run eslint:fix",
24
28
  "start": "forever start dist/index.js",
@@ -28,30 +32,22 @@
28
32
  "tsc": "tsc"
29
33
  },
30
34
  "dependencies": {
31
- "tinylicious": "^0.4.38350"
35
+ "tinylicious": "^0.4.89251"
32
36
  },
33
37
  "devDependencies": {
34
- "@fluidframework/build-common": "^0.23.0",
35
- "@fluidframework/eslint-config-fluid": "^0.23.0",
36
- "@microsoft/api-extractor": "^7.16.1",
37
- "@typescript-eslint/eslint-plugin": "~4.14.0",
38
- "@typescript-eslint/eslint-plugin-tslint": "~2.16.0",
39
- "@typescript-eslint/parser": "~4.14.0",
40
- "concurrently": "^5.2.0",
41
- "copyfiles": "^2.1.0",
42
- "eslint": "~7.18.0",
43
- "eslint-plugin-eslint-comments": "~3.2.0",
44
- "eslint-plugin-import": "~2.22.1",
45
- "eslint-plugin-no-null": "~1.0.2",
46
- "eslint-plugin-prefer-arrow": "~1.2.2",
47
- "eslint-plugin-react": "~7.22.0",
48
- "eslint-plugin-unicorn": "~26.0.1",
49
- "forever": "^3.0.4",
38
+ "@fluidframework/build-common": "^1.0.0",
39
+ "@fluidframework/eslint-config-fluid": "^1.0.0",
40
+ "@microsoft/api-extractor": "^7.22.2",
41
+ "@rushstack/eslint-config": "^2.5.1",
42
+ "concurrently": "^6.2.0",
43
+ "copyfiles": "^2.4.1",
44
+ "eslint": "~8.6.0",
45
+ "forever": "^4.0.3",
50
46
  "rimraf": "^2.6.2",
51
47
  "ts-node": "^8.6.2",
52
- "typescript": "~4.1.3"
48
+ "typescript": "~4.5.5"
53
49
  },
54
50
  "engines": {
55
- "node": ">=12.17.0"
51
+ "node": ">=14.0.0"
56
52
  }
57
53
  }
@@ -1,11 +0,0 @@
1
- // This file is read by tools that parse documentation comments conforming to the TSDoc standard.
2
- // It should be published with your NPM package. It should not be tracked by Git.
3
- {
4
- "tsdocVersion": "0.12",
5
- "toolPackages": [
6
- {
7
- "packageName": "@microsoft/api-extractor",
8
- "packageVersion": "7.16.1"
9
- }
10
- ]
11
- }