@fluid-tools/fetch-tool 2.0.0-dev-rc.3.0.0.254674 → 2.0.0-dev-rc.4.0.0.261659
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 +23 -0
- package/package.json +18 -18
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @fluid-tools/fetch-tool
|
|
2
2
|
|
|
3
|
+
## 2.0.0-rc.3.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- Packages now use package.json "exports" and require modern module resolution [97d68aa06b](https://github.com/microsoft/FluidFramework/commit/97d68aa06bd5c022ecb026655814aea222a062ae)
|
|
8
|
+
|
|
9
|
+
Fluid Framework packages have been updated to use the [package.json "exports"
|
|
10
|
+
field](https://nodejs.org/docs/latest-v18.x/api/packages.html#exports) to define explicit entry points for both
|
|
11
|
+
TypeScript types and implementation code.
|
|
12
|
+
|
|
13
|
+
This means that using Fluid Framework packages require the following TypeScript settings in tsconfig.json:
|
|
14
|
+
|
|
15
|
+
- `"moduleResolution": "Node16"` with `"module": "Node16"`
|
|
16
|
+
- `"moduleResolution": "Bundler"` with `"module": "ESNext"`
|
|
17
|
+
|
|
18
|
+
We recommend using Node16/Node16 unless absolutely necessary. That will produce transpiled JavaScript that is suitable
|
|
19
|
+
for use with modern versions of Node.js _and_ Bundlers.
|
|
20
|
+
[See the TypeScript documentation](https://www.typescriptlang.org/tsconfig#moduleResolution) for more information
|
|
21
|
+
regarding the module and moduleResolution options.
|
|
22
|
+
|
|
23
|
+
**Node10 moduleResolution is not supported; it does not support Fluid Framework's API structuring pattern that is used
|
|
24
|
+
to distinguish stable APIs from those that are in development.**
|
|
25
|
+
|
|
3
26
|
## 2.0.0-rc.2.0.0
|
|
4
27
|
|
|
5
28
|
Dependency updates only.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluid-tools/fetch-tool",
|
|
3
|
-
"version": "2.0.0-dev-rc.
|
|
3
|
+
"version": "2.0.0-dev-rc.4.0.0.261659",
|
|
4
4
|
"description": "Console tool to fetch Fluid data from relay service",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -15,28 +15,28 @@
|
|
|
15
15
|
"fluid-fetch": "bin/fluid-fetch"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@fluid-internal/client-utils": "2.0.0-dev-rc.
|
|
19
|
-
"@fluidframework/container-runtime": "2.0.0-dev-rc.
|
|
20
|
-
"@fluidframework/core-interfaces": "2.0.0-dev-rc.
|
|
21
|
-
"@fluidframework/core-utils": "2.0.0-dev-rc.
|
|
22
|
-
"@fluidframework/datastore": "2.0.0-dev-rc.
|
|
23
|
-
"@fluidframework/driver-definitions": "2.0.0-dev-rc.
|
|
24
|
-
"@fluidframework/odsp-doclib-utils": "2.0.0-dev-rc.
|
|
25
|
-
"@fluidframework/odsp-driver": "2.0.0-dev-rc.
|
|
26
|
-
"@fluidframework/odsp-driver-definitions": "2.0.0-dev-rc.
|
|
27
|
-
"@fluidframework/odsp-urlresolver": "2.0.0-dev-rc.
|
|
18
|
+
"@fluid-internal/client-utils": "2.0.0-dev-rc.4.0.0.261659",
|
|
19
|
+
"@fluidframework/container-runtime": "2.0.0-dev-rc.4.0.0.261659",
|
|
20
|
+
"@fluidframework/core-interfaces": "2.0.0-dev-rc.4.0.0.261659",
|
|
21
|
+
"@fluidframework/core-utils": "2.0.0-dev-rc.4.0.0.261659",
|
|
22
|
+
"@fluidframework/datastore": "2.0.0-dev-rc.4.0.0.261659",
|
|
23
|
+
"@fluidframework/driver-definitions": "2.0.0-dev-rc.4.0.0.261659",
|
|
24
|
+
"@fluidframework/odsp-doclib-utils": "2.0.0-dev-rc.4.0.0.261659",
|
|
25
|
+
"@fluidframework/odsp-driver": "2.0.0-dev-rc.4.0.0.261659",
|
|
26
|
+
"@fluidframework/odsp-driver-definitions": "2.0.0-dev-rc.4.0.0.261659",
|
|
27
|
+
"@fluidframework/odsp-urlresolver": "2.0.0-dev-rc.4.0.0.261659",
|
|
28
28
|
"@fluidframework/protocol-definitions": "^3.2.0",
|
|
29
|
-
"@fluidframework/routerlicious-driver": "2.0.0-dev-rc.
|
|
30
|
-
"@fluidframework/routerlicious-urlresolver": "2.0.0-dev-rc.
|
|
31
|
-
"@fluidframework/runtime-definitions": "2.0.0-dev-rc.
|
|
32
|
-
"@fluidframework/tool-utils": "2.0.0-dev-rc.
|
|
29
|
+
"@fluidframework/routerlicious-driver": "2.0.0-dev-rc.4.0.0.261659",
|
|
30
|
+
"@fluidframework/routerlicious-urlresolver": "2.0.0-dev-rc.4.0.0.261659",
|
|
31
|
+
"@fluidframework/runtime-definitions": "2.0.0-dev-rc.4.0.0.261659",
|
|
32
|
+
"@fluidframework/tool-utils": "2.0.0-dev-rc.4.0.0.261659"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@biomejs/biome": "^1.6.2",
|
|
36
|
-
"@fluid-tools/build-cli": "
|
|
37
|
-
"@fluid-tools/fetch-tool-previous": "npm:@fluid-tools/fetch-tool@2.0.0-
|
|
36
|
+
"@fluid-tools/build-cli": "0.38.0-259537",
|
|
37
|
+
"@fluid-tools/fetch-tool-previous": "npm:@fluid-tools/fetch-tool@2.0.0-rc.3.0.0",
|
|
38
38
|
"@fluidframework/build-common": "^2.0.3",
|
|
39
|
-
"@fluidframework/build-tools": "
|
|
39
|
+
"@fluidframework/build-tools": "0.38.0-259537",
|
|
40
40
|
"@fluidframework/eslint-config-fluid": "^5.1.0",
|
|
41
41
|
"@types/node": "^18.19.0",
|
|
42
42
|
"copyfiles": "^2.4.1",
|