@fluidframework/file-driver 2.0.0-internal.7.2.1 → 2.0.0-internal.7.3.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/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # @fluidframework/file-driver
2
2
 
3
+ ## 2.0.0-internal.7.3.0
4
+
5
+ Dependency updates only.
6
+
3
7
  ## 2.0.0-internal.7.2.0
4
8
 
5
9
  Dependency updates only.
package/README.md CHANGED
@@ -32,8 +32,7 @@ package for more information including tools to convert between version schemes.
32
32
 
33
33
  This project may contain Microsoft trademarks or logos for Microsoft projects, products, or services.
34
34
 
35
- Use of these trademarks or logos must follow Microsoft's [Trademark & Brand
36
- Guidelines](https://www.microsoft.com/en-us/legal/intellectualproperty/trademarks/usage/general).
35
+ Use of these trademarks or logos must follow Microsoft's [Trademark & Brand Guidelines](https://www.microsoft.com/en-us/legal/intellectualproperty/trademarks/usage/general).
37
36
 
38
37
  Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship.
39
38
 
@@ -5,7 +5,7 @@
5
5
  "toolPackages": [
6
6
  {
7
7
  "packageName": "@microsoft/api-extractor",
8
- "packageVersion": "7.38.0"
8
+ "packageVersion": "7.38.3"
9
9
  }
10
10
  ]
11
11
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluidframework/file-driver",
3
- "version": "2.0.0-internal.7.2.1",
3
+ "version": "2.0.0-internal.7.3.0",
4
4
  "description": "A driver that reads/write from/to local file storage.",
5
5
  "homepage": "https://fluidframework.com",
6
6
  "repository": {
@@ -11,24 +11,25 @@
11
11
  "license": "MIT",
12
12
  "author": "Microsoft and contributors",
13
13
  "sideEffects": false,
14
+ "type": "commonjs",
14
15
  "main": "dist/index.js",
15
16
  "types": "dist/index.d.ts",
16
17
  "dependencies": {
17
- "@fluid-internal/client-utils": ">=2.0.0-internal.7.2.1 <2.0.0-internal.7.3.0",
18
- "@fluidframework/core-interfaces": ">=2.0.0-internal.7.2.1 <2.0.0-internal.7.3.0",
19
- "@fluidframework/core-utils": ">=2.0.0-internal.7.2.1 <2.0.0-internal.7.3.0",
20
- "@fluidframework/driver-definitions": ">=2.0.0-internal.7.2.1 <2.0.0-internal.7.3.0",
21
- "@fluidframework/driver-utils": ">=2.0.0-internal.7.2.1 <2.0.0-internal.7.3.0",
18
+ "@fluid-internal/client-utils": ">=2.0.0-internal.7.3.0 <2.0.0-internal.7.4.0",
19
+ "@fluidframework/core-interfaces": ">=2.0.0-internal.7.3.0 <2.0.0-internal.7.4.0",
20
+ "@fluidframework/core-utils": ">=2.0.0-internal.7.3.0 <2.0.0-internal.7.4.0",
21
+ "@fluidframework/driver-definitions": ">=2.0.0-internal.7.3.0 <2.0.0-internal.7.4.0",
22
+ "@fluidframework/driver-utils": ">=2.0.0-internal.7.3.0 <2.0.0-internal.7.4.0",
22
23
  "@fluidframework/protocol-definitions": "^3.0.0",
23
- "@fluidframework/replay-driver": ">=2.0.0-internal.7.2.1 <2.0.0-internal.7.3.0"
24
+ "@fluidframework/replay-driver": ">=2.0.0-internal.7.3.0 <2.0.0-internal.7.4.0"
24
25
  },
25
26
  "devDependencies": {
26
- "@fluid-tools/build-cli": "^0.26.1",
27
+ "@fluid-tools/build-cli": "^0.28.0",
27
28
  "@fluidframework/build-common": "^2.0.3",
28
- "@fluidframework/build-tools": "^0.26.1",
29
- "@fluidframework/eslint-config-fluid": "^3.0.0",
30
- "@fluidframework/file-driver-previous": "npm:@fluidframework/file-driver@2.0.0-internal.7.1.0",
31
- "@microsoft/api-extractor": "^7.37.0",
29
+ "@fluidframework/build-tools": "^0.28.0",
30
+ "@fluidframework/eslint-config-fluid": "^3.1.0",
31
+ "@fluidframework/file-driver-previous": "npm:@fluidframework/file-driver@2.0.0-internal.7.2.0",
32
+ "@microsoft/api-extractor": "^7.38.3",
32
33
  "@types/node": "^16.18.38",
33
34
  "eslint": "~8.50.0",
34
35
  "prettier": "~3.0.3",
@@ -51,7 +52,7 @@
51
52
  "build:compile": "fluid-build . --task compile",
52
53
  "build:docs": "api-extractor run --local",
53
54
  "ci:build:docs": "api-extractor run",
54
- "clean": "rimraf --glob dist lib \"*.tsbuildinfo\" \"*.build.log\" _api-extractor-temp",
55
+ "clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" _api-extractor-temp",
55
56
  "eslint": "eslint --format stylish src",
56
57
  "eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
57
58
  "format": "npm run prettier:fix",
package/tsconfig.json CHANGED
@@ -1,5 +1,9 @@
1
1
  {
2
- "extends": "@fluidframework/build-common/ts-common-config.json",
2
+ "extends": [
3
+ "../../../common/build/build-common/tsconfig.base.json",
4
+ "../../../common/build/build-common/tsconfig.cjs.json",
5
+ ],
6
+ "include": ["src/**/*"],
3
7
  "exclude": ["dist", "node_modules"],
4
8
  "compilerOptions": {
5
9
  "rootDir": "./src",
@@ -7,5 +11,4 @@
7
11
  "types": ["node"],
8
12
  "noUnusedLocals": false,
9
13
  },
10
- "include": ["src/**/*"],
11
14
  }