@fluidframework/azure-local-service 2.0.0-dev.5.3.2.178189 → 2.0.0-dev.6.4.0.191258
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 +24 -0
- package/README.md +4 -3
- package/package.json +7 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @fluidframework/azure-local-service
|
|
2
2
|
|
|
3
|
+
## 2.0.0-internal.6.3.0
|
|
4
|
+
|
|
5
|
+
Dependency updates only.
|
|
6
|
+
|
|
7
|
+
## 2.0.0-internal.6.2.0
|
|
8
|
+
|
|
9
|
+
Dependency updates only.
|
|
10
|
+
|
|
11
|
+
## 2.0.0-internal.6.1.0
|
|
12
|
+
|
|
13
|
+
Dependency updates only.
|
|
14
|
+
|
|
15
|
+
## 2.0.0-internal.6.0.0
|
|
16
|
+
|
|
17
|
+
### Major Changes
|
|
18
|
+
|
|
19
|
+
- Upgraded typescript transpilation target to ES2020 [8abce8cdb4](https://github.com/microsoft/FluidFramework/commits/8abce8cdb4e2832fb6405fb44e393bef03d5648a)
|
|
20
|
+
|
|
21
|
+
Upgraded typescript transpilation target to ES2020. This is done in order to decrease the bundle sizes of Fluid Framework packages. This has provided size improvements across the board for ex. Loader, Driver, Runtime etc. Reduced bundle sizes helps to load lesser code in apps and hence also helps to improve the perf.If any app wants to target any older versions of browsers with which this target version is not compatible, then they can use packages like babel to transpile to a older target.
|
|
22
|
+
|
|
23
|
+
## 2.0.0-internal.5.4.0
|
|
24
|
+
|
|
25
|
+
Dependency updates only.
|
|
26
|
+
|
|
3
27
|
## 2.0.0-internal.5.3.0
|
|
4
28
|
|
|
5
29
|
Dependency updates only.
|
package/README.md
CHANGED
|
@@ -17,9 +17,10 @@ When taking a dependency on a Fluid Framework library, we recommend using a `^`
|
|
|
17
17
|
While Fluid Framework libraries may use different ranges with interdependencies between other Fluid Framework libraries,
|
|
18
18
|
library consumers should always prefer `^`.
|
|
19
19
|
|
|
20
|
-
Note that when depending on a library version of the form 2.0.0-internal.x.y.z
|
|
21
|
-
|
|
22
|
-
|
|
20
|
+
Note that when depending on a library version of the form `2.0.0-internal.x.y.z`, called the Fluid internal version scheme,
|
|
21
|
+
you must use a `>= <` dependency range (such as `>=2.0.0-internal.x.y.z <2.0.0-internal.w.0.0` where `w` is `x+1`).
|
|
22
|
+
Standard `^` and `~` ranges will not work as expected.
|
|
23
|
+
See the [@fluid-tools/version-tools](https://github.com/microsoft/FluidFramework/blob/main/build-tools/packages/version-tools/README.md)
|
|
23
24
|
package for more information including tools to convert between version schemes.
|
|
24
25
|
|
|
25
26
|
<!-- prettier-ignore-end -->
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/azure-local-service",
|
|
3
|
-
"version": "2.0.0-dev.
|
|
3
|
+
"version": "2.0.0-dev.6.4.0.191258",
|
|
4
4
|
"description": "Local implementation of the Azure Fluid Relay service for testing/development use",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -14,26 +14,22 @@
|
|
|
14
14
|
"typings": "dist/index.d.ts",
|
|
15
15
|
"bin": "dist/index.js",
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"tinylicious": "0.
|
|
17
|
+
"tinylicious": "^1.0.0"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
|
-
"@fluidframework/build-common": "^
|
|
21
|
-
"@fluidframework/build-tools": "^0.
|
|
22
|
-
"@fluidframework/eslint-config-fluid": "^2.
|
|
20
|
+
"@fluidframework/build-common": "^2.0.0",
|
|
21
|
+
"@fluidframework/build-tools": "^0.22.0",
|
|
22
|
+
"@fluidframework/eslint-config-fluid": "^2.1.0",
|
|
23
23
|
"@microsoft/api-extractor": "^7.34.4",
|
|
24
|
-
"concurrently": "^7.6.0",
|
|
25
24
|
"copyfiles": "^2.4.1",
|
|
26
25
|
"eslint": "~8.6.0",
|
|
27
26
|
"eslint-plugin-jsdoc": "~39.3.0",
|
|
28
27
|
"forever": "^4.0.3",
|
|
29
28
|
"prettier": "~2.6.2",
|
|
30
29
|
"rimraf": "^4.4.0",
|
|
31
|
-
"ts-node": "^
|
|
30
|
+
"ts-node": "^10.9.1",
|
|
32
31
|
"typescript": "~4.5.5"
|
|
33
32
|
},
|
|
34
|
-
"engines": {
|
|
35
|
-
"node": ">=16.16.0"
|
|
36
|
-
},
|
|
37
33
|
"typeValidation": {
|
|
38
34
|
"disabled": true,
|
|
39
35
|
"broken": {}
|
|
@@ -43,7 +39,7 @@
|
|
|
43
39
|
"build:compile": "fluid-build . --task compile",
|
|
44
40
|
"build:docs": "api-extractor run --local",
|
|
45
41
|
"ci:build:docs": "api-extractor run",
|
|
46
|
-
"clean": "rimraf dist lib *.tsbuildinfo *.build.log",
|
|
42
|
+
"clean": "rimraf --glob 'dist' 'lib' '*.tsbuildinfo' '*.build.log' '_api-extractor-temp'",
|
|
47
43
|
"eslint": "eslint --format stylish src",
|
|
48
44
|
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
|
49
45
|
"format": "npm run prettier:fix",
|